Function: allout-do-doublecheck
allout-do-doublecheck is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-do-doublecheck)
Documentation
True if current item conditions qualify for checking on topic aberrance.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ #4 Navigation
;;;_ - Position Assessment
;;;_ : Location Predicates
;;;_ > allout-do-doublecheck ()
(defsubst allout-do-doublecheck ()
"True if current item conditions qualify for checking on topic aberrance."
(and
;; presume integrity of outline and yanked content during yank -- necessary
;; to allow for level disparity of yank location and yanked text:
(not allout-inhibit-aberrance-doublecheck)
;; allout-doublecheck-at-and-shallower is ceiling for doublecheck:
(<= allout-recent-depth allout-doublecheck-at-and-shallower)))