aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-29 16:49:08 +0000
committerGerd Moellmann2000-11-29 16:49:08 +0000
commit7423978df5b5799702df88f321cb9c647cc18e1f (patch)
tree6648a0404a9b55ed9f91c33dd6a5f3ab9bc516ab
parentaad0f6ab75720cc488deea575310b9bee1dcdbb3 (diff)
downloademacs-7423978df5b5799702df88f321cb9c647cc18e1f.tar.gz
emacs-7423978df5b5799702df88f321cb9c647cc18e1f.zip
(auto-mode-alist): Add an entry for antlr-mode.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/files.el3
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 555a6492147..b37dbe76122 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12000-11-29 Gerd Moellmann <gerd@gnu.org> 12000-11-29 Gerd Moellmann <gerd@gnu.org>
2 2
3 * files.el (auto-mode-alist): Add an entry for antlr-mode.
4
3 * play/5x5.el: Remove version info. 5 * play/5x5.el: Remove version info.
4 6
5 * toolbar/tool-bar.el (tool-bar-mode): Doc fix. 7 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
diff --git a/lisp/files.el b/lisp/files.el
index d721042ce2b..973f7bc9de0 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1458,7 +1458,8 @@ in that case, this function acts as if `enable-local-variables' were t."
1458;;; The following should come after the ChangeLog pattern 1458;;; The following should come after the ChangeLog pattern
1459;;; for the sake of ChangeLog.1, etc. 1459;;; for the sake of ChangeLog.1, etc.
1460;;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too. 1460;;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too.
1461 ("\\.[12345678]\\'" . nroff-mode))) 1461 ("\\.[12345678]\\'" . nroff-mode)
1462 ("\\.g\\'" . antlr-mode)))
1462 "Alist of filename patterns vs corresponding major mode functions. 1463 "Alist of filename patterns vs corresponding major mode functions.
1463Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL). 1464Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
1464\(NON-NIL stands for anything that is not nil; the value does not matter.) 1465\(NON-NIL stands for anything that is not nil; the value does not matter.)