Function: speedbar-generic-item-info

speedbar-generic-item-info is a byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-generic-item-info)

Documentation

Attempt to derive, and then display information about this line item.

File style information is displayed with speedbar-item-info.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-generic-item-info ()
  "Attempt to derive, and then display information about this line item.
File style information is displayed with `speedbar-item-info'."
  (save-excursion
    (beginning-of-line)
    ;; Skip invisible number info.
    (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0)))
    ;; Skip items in "folder" type text characters.
    (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0)))
    ;; Get the text
    (dframe-message "Text: %s" (buffer-substring-no-properties
				  (point) (line-end-position)))))