Function: hs-looking-at-block-start-p--default

hs-looking-at-block-start-p--default is a byte-compiled function defined in hideshow.el.gz.

Signature

(hs-looking-at-block-start-p--default)

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--default ()
  "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))))))