Function: hs-looking-at-block-start-p
hs-looking-at-block-start-p is a byte-compiled function defined in
hideshow.el.gz.
Signature
(hs-looking-at-block-start-p)
Documentation
Return non-nil if the point is at the block start.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defun hs-looking-at-block-start-p ()
"Return non-nil if the point is at the block start."
(and (looking-at hs-block-start-regexp)
(save-match-data (not (nth 8 (syntax-ppss))))))