diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-04-11 14:45:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-04-11 14:45:09 +0000 |
commit | 174bc861c80da5649c28c3104929888b5e15cb07 (patch) | |
tree | ff1617dd5259557f57d3ce7c4910cf30cc1f67ee /lisp | |
parent | 146822bc2eac2457cf04163c5d4893dc84a3d8c0 (diff) | |
download | emacs-174bc861c80da5649c28c3104929888b5e15cb07.tar.gz |
(auto-mode-alist): Handle `.java'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/files.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el index 6839fcf27dc..9c3caa1b468 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -942,6 +942,7 @@ run `normal-mode' explicitly." ("\\.hxx\\'" . c++-mode) ("\\.c\\+\\+\\'" . c++-mode) ("\\.h\\+\\+\\'" . c++-mode) + ("\\.java\\'" . java-mode) ("\\.mk\\'" . makefile-mode) ("\\(M\\|m\\|GNUm\\)akefile\\(.in\\)?\\'" . makefile-mode) ;;; Less common extensions come here |