Function: allout-widgets-deletions-recorder
allout-widgets-deletions-recorder is a byte-compiled function defined
in allout-widgets.el.gz.
Signature
(allout-widgets-deletions-recorder DEPTH FROM)
Documentation
Record allout item deletions for tracking during post-command processing.
Intended for use on allout-structure-deleted-functions.
DEPTH is the depth of the deleted subtree, and FROM is the point from which the subtree was deleted.
Records changes in allout-widgets-changes-record.
Source Code
;; Defined in /usr/src/emacs/lisp/allout-widgets.el.gz
;;;_ > allout-widgets-deletions-recorder (depth from)
(defun allout-widgets-deletions-recorder (depth from)
"Record allout item deletions for tracking during post-command processing.
Intended for use on `allout-structure-deleted-functions'.
DEPTH is the depth of the deleted subtree, and FROM is the point from which
the subtree was deleted.
Records changes in `allout-widgets-changes-record'."
(push (list :deleted depth from) allout-widgets-changes-record))