Function: allout-current-bullet

allout-current-bullet is a byte-compiled function defined in allout.el.gz.

Signature

(allout-current-bullet)

Documentation

Return bullet of current (visible) topic heading, or none if none found.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_    > allout-current-bullet ()
(defun allout-current-bullet ()
  "Return bullet of current (visible) topic heading, or none if none found."
  (condition-case nil
      (save-excursion
	(allout-back-to-current-heading)
	(buffer-substring-no-properties (- allout-recent-prefix-end 1)
                                        allout-recent-prefix-end))
    ;; Quick and dirty provision, ostensibly for missing bullet:
    (args-out-of-range nil))
  )