Function: speedbar-insert-separator
speedbar-insert-separator is a byte-compiled function defined in
speedbar.el.gz.
Signature
(speedbar-insert-separator TEXT)
Documentation
Insert a separation label of TEXT.
Separators are not active, have no labels, depth, or actions.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-insert-separator (text)
"Insert a separation label of TEXT.
Separators are not active, have no labels, depth, or actions."
(if speedbar-use-images
(let ((start (point)))
(insert "//")
(speedbar-insert-image-button-maybe start 2)))
(let ((start (point)))
(insert text "\n")
(speedbar-make-button start (point)
'speedbar-separator-face
nil nil nil)))