Variable: hs-forward-sexp-func
hs-forward-sexp-func is a buffer-local variable defined in
hideshow.el.gz.
Documentation
Function used to do a forward-sexp.
Should change for Algol-ish modes. For single-character block
delimiters -- ie, the syntax table regexp for the character is
either ( or ) -- hs-forward-sexp-func would just be
forward-sexp. For other modes such as simula, a more specialized
function is necessary.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defvar-local hs-forward-sexp-func #'forward-sexp
"Function used to do a `forward-sexp'.
Should change for Algol-ish modes. For single-character block
delimiters -- ie, the syntax table regexp for the character is
either `(' or `)' -- `hs-forward-sexp-func' would just be
`forward-sexp'. For other modes such as simula, a more specialized
function is necessary.")