Function: hs-find-block-beginning-match
hs-find-block-beginning-match is a byte-compiled function defined in
hideshow.el.gz.
Signature
(hs-find-block-beginning-match)
Documentation
Reposition point at the end of match of the block-start regexp.
Return point, or nil if original point was not in a block.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defun hs-find-block-beginning-match ()
"Reposition point at the end of match of the block-start regexp.
Return point, or nil if original point was not in a block."
(when (and (funcall hs-find-block-beginning-func)
(funcall hs-looking-at-block-start-p-func))
;; point is inside a block
(goto-char (match-end 0))))