aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Gómez2011-12-09 20:54:01 +0100
committerJuanma Barranquero2011-12-09 20:54:01 +0100
commit1d84e9bbabf8c7f88aeed1f556dfd6f27a4d1bb4 (patch)
tree37764bf656e07837475849b664e01348704a8671
parent7cd4e72cff31ec6a28d9e63c4d390d478d8619f1 (diff)
downloademacs-1d84e9bbabf8c7f88aeed1f556dfd6f27a4d1bb4.tar.gz
emacs-1d84e9bbabf8c7f88aeed1f556dfd6f27a4d1bb4.zip
lisp/speedbar.el (speedbar-supported-extension-expressions): Add .adb, .ads.
Fixes: debbugs:10256
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/speedbar.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dac5d05e181..ed5af2e2b20 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
2
3 * speedbar.el (speedbar-supported-extension-expressions):
4 Add .adb and .ads, commonly used for Ada source code (bug#10256).
5
12011-12-09 Juanma Barranquero <lekktu@gmail.com> 62011-12-09 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * printing.el (pr-mode-alist): 8 * printing.el (pr-mode-alist):
diff --git a/lisp/speedbar.el b/lisp/speedbar.el
index 3e79095e52f..efe7832aca6 100644
--- a/lisp/speedbar.el
+++ b/lisp/speedbar.el
@@ -696,7 +696,7 @@ function `speedbar-extension-list-to-regex'.")
696 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?" 696 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?"
697 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".js" ".f\\(90\\|77\\|or\\)?") 697 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".js" ".f\\(90\\|77\\|or\\)?")
698 (if speedbar-use-imenu-flag 698 (if speedbar-use-imenu-flag
699 '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g" 699 '(".ad[abs]" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g"
700 ;; html is not supported by default, but an imenu tags package 700 ;; html is not supported by default, but an imenu tags package
701 ;; is available. Also, html files are nice to be able to see. 701 ;; is available. Also, html files are nice to be able to see.
702 ".s?html" 702 ".s?html"