Function: allout-open-subtopic
allout-open-subtopic is an interactive and byte-compiled function
defined in allout.el.gz.
Signature
(allout-open-subtopic ARG)
Documentation
Open new topic header at deeper level than the current one.
Negative universal ARG means to open deeper, but place the new topic prior to the current one.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-open-subtopic (arg)
(defun allout-open-subtopic (arg)
"Open new topic header at deeper level than the current one.
Negative universal ARG means to open deeper, but place the new topic
prior to the current one."
(interactive "p")
(allout-open-topic 1 (> 0 arg) (< 1 arg)))