Function: allout-e-o-prefix-p
allout-e-o-prefix-p is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-e-o-prefix-p)
Documentation
True if point is located where current topic prefix ends, heading begins.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-e-o-prefix-p ()
(defun allout-e-o-prefix-p ()
"True if point is located where current topic prefix ends, heading begins."
(and (save-match-data
(save-excursion (let ((inhibit-field-text-motion t))
(beginning-of-line))
(looking-at allout-regexp))
(= (point) (save-excursion (allout-end-of-prefix)(point))))))