Function: hsys-org-src-block-start-at-p
hsys-org-src-block-start-at-p is a byte-compiled function defined in
hsys-org.el.
Signature
(hsys-org-src-block-start-at-p)
Documentation
Return non-nil if point is on the first line of an Org source block definition.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-src-block-start-at-p ()
"Return non-nil if point is on the first line of an Org source block definition."
(save-excursion
(forward-line 0)
(let ((case-fold-search t))
(looking-at org-babel-src-block-regexp))))