Variable: speedbar-obj-alist
speedbar-obj-alist is a variable defined in speedbar.el.gz.
Value
(("\\.\\([cpC]\\|cpp\\|cc\\|cxx\\)$" . ".o") ("\\.el$" . ".elc")
("\\.java$" . ".class") ("\\.f\\(or\\|90\\|77\\)?$" . ".o")
("\\.tex$" . ".dvi") ("\\.texi$" . ".info"))
Documentation
Alist of file extensions, and their corresponding object file type.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defvar speedbar-obj-alist
'(("\\.\\([cpC]\\|cpp\\|cc\\|cxx\\)$" . ".o")
("\\.el$" . ".elc")
("\\.java$" . ".class")
("\\.f\\(or\\|90\\|77\\)?$" . ".o")
("\\.tex$" . ".dvi")
("\\.texi$" . ".info"))
"Alist of file extensions, and their corresponding object file type.")