Function: allout-bullet-for-depth
allout-bullet-for-depth is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-bullet-for-depth &optional DEPTH)
Documentation
Return outline topic bullet suited to optional DEPTH, or current depth.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-bullet-for-depth (&optional depth)
(defun allout-bullet-for-depth (&optional depth)
"Return outline topic bullet suited to optional DEPTH, or current depth."
;; Find bullet in plain-bullets-string modulo DEPTH.
(if allout-stylish-prefixes
(char-to-string (aref allout-plain-bullets-string
(% (max 0 (- depth 2))
allout-plain-bullets-string-len)))
allout-primary-bullet)
)