Variable: allout-structure-added-functions
allout-structure-added-functions is a customizable variable defined in
allout.el.gz.
Value
nil
Documentation
Abnormal hook run after adding items to an Allout outline.
Functions on the hook should take two arguments:
- NEW-START -- integer indicating position of start of the first new item.
- NEW-END -- integer indicating position of end of the last new item.
This hook might be invoked multiple times by a single command.
This variable was added, or its default value changed, in Emacs 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ = allout-structure-added-functions
(defcustom allout-structure-added-functions nil
"Abnormal hook run after adding items to an Allout outline.
Functions on the hook should take two arguments:
- NEW-START -- integer indicating position of start of the first new item.
- NEW-END -- integer indicating position of end of the last new item.
This hook might be invoked multiple times by a single command."
:type 'hook
:group 'allout
:version "24.3")