Function: allout-get-prefix-bullet

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

Signature

(allout-get-prefix-bullet PREFIX)

Documentation

Return the bullet of the header prefix string PREFIX.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_    > allout-get-prefix-bullet (prefix)
(defun allout-get-prefix-bullet (prefix)
  "Return the bullet of the header prefix string PREFIX."
  ;; Doesn't make sense if we're old-style prefixes, but this just
  ;; oughtn't be called then, so forget about it...
  (if (string-match allout-regexp prefix)
      (substring prefix (1- (match-end 2)) (match-end 2))))