Function: allout-widgets-additions-recorder
allout-widgets-additions-recorder is a byte-compiled function defined
in allout-widgets.el.gz.
Signature
(allout-widgets-additions-recorder FROM TO)
Documentation
Record allout item additions for tracking during post-command processing.
Intended for use on allout-structure-added-functions.
FROM point at the start of the first new item and TO is point at the start of the last one.
Records changes in allout-widgets-changes-record.
Source Code
;; Defined in /usr/src/emacs/lisp/allout-widgets.el.gz
;;;_ > allout-widgets-additions-recorder (from to)
(defun allout-widgets-additions-recorder (from to)
"Record allout item additions for tracking during post-command processing.
Intended for use on `allout-structure-added-functions'.
FROM point at the start of the first new item and TO is point at the start
of the last one.
Records changes in `allout-widgets-changes-record'."
(push (list :added from to) allout-widgets-changes-record))