diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-07-12 07:15:00 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-07-12 07:15:00 +0000 |
commit | ec7dc7e177c409924ba0f905c2fdbcb179d883c5 (patch) | |
tree | 9530570f55aec1883ff5f07ce35aac83936ec7f1 | |
parent | 58b9e19f22e38cc9e8cd960a00656980a1bd9519 (diff) | |
download | emacs-ec7dc7e177c409924ba0f905c2fdbcb179d883c5.tar.gz |
(speedbar-supported-extension-expressions): Add .g to the extension list,
for antlr-mode. From Christoph Wedler <Christoph.Wedler@sap.com>.
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/speedbar.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4dd4ea79a9f..a922e59ccdf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2001-07-11 Eli Zaretskii <eliz@is.elta.co.il> + + * speedbar.el (speedbar-supported-extension-expressions): Add .g + to the extension list, for antlr-mode. From Christoph Wedler + <Christoph.Wedler@sap.com>. + 2001-07-11 Stefan Monnier <monnier@cs.yale.edu> * vc.el (vc-prefix-map): Moved back to vc-hooks.el. diff --git a/lisp/speedbar.el b/lisp/speedbar.el index e543aa5304d..12f99e28015 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -671,7 +671,7 @@ It is generated from the variable `completion-ignored-extensions'") (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?" ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?") (if speedbar-use-imenu-flag - '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" + '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g" ;; html is not supported by default, but an imenu tags package ;; is available. Also, html files are nice to be able to see. ".s?html" |