Function: hs-forward-sexp
hs-forward-sexp is a byte-compiled function defined in hideshow.el.gz.
This function is obsolete since 31.1; Use hs-block-positions
instead.
Signature
(hs-forward-sexp MATCH-DATA ARG)
Documentation
Adjust point based on MATCH-DATA and call hs-forward-sexp-function 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-function' with ARG.
Original match data is restored upon return."
(declare (obsolete "Use `hs-block-positions' instead." "31.1"))
(save-match-data
(set-match-data match-data)
(goto-char (match-beginning hs-block-start-mdata-select))
(funcall hs-forward-sexp-function 1)))