Function: speedbar-insert-image-button-maybe
speedbar-insert-image-button-maybe is a byte-compiled function defined
in speedbar.el.gz.
Signature
(speedbar-insert-image-button-maybe START LENGTH)
Documentation
Insert an image button based on text starting at START for LENGTH chars.
If buttontext is unknown, just insert that text. If we have an image associated with it, use that image.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-insert-image-button-maybe (start length)
"Insert an image button based on text starting at START for LENGTH chars.
If buttontext is unknown, just insert that text.
If we have an image associated with it, use that image."
(when speedbar-use-images
(let ((ezimage-expand-image-button-alist
speedbar-expand-image-button-alist))
(ezimage-insert-image-button-maybe start length))))