Function: hs-forward-sexp
hs-forward-sexp is a byte-compiled function defined in hideshow.el.gz.
Signature
(hs-forward-sexp MATCH-DATA ARG)
Documentation
Adjust point based on MATCH-DATA and call hs-forward-sexp-func with ARG.
Original match data is restored upon return.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defun hs-forward-sexp (match-data arg)
"Adjust point based on MATCH-DATA and call `hs-forward-sexp-func' with ARG.
Original match data is restored upon return."
(save-match-data
(set-match-data match-data)
(goto-char (match-beginning hs-block-start-mdata-select))
(funcall hs-forward-sexp-func arg)))