diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-26 18:12:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-26 18:12:00 +0000 |
commit | 2b845a8c707203fad8cebf88bd397c5d9915c6c0 (patch) | |
tree | cdb861e913bf135dce702f604af52a0da69747bd /lisp/files.el | |
parent | 897897e32b3b3108cf4563954e5d5560c55cc0a4 (diff) | |
download | emacs-2b845a8c707203fad8cebf88bd397c5d9915c6c0.tar.gz |
(auto-mode-alist): Treat .H and .hh as C++ files.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el index f8a1ea1715b..9d94626948f 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -706,7 +706,9 @@ run `normal-mode' explicitly." ("\\.mss\\'" . scribe-mode) ("\\.pl\\'" . prolog-mode) ("\\.cc\\'" . c++-mode) + ("\\.hh\\'" . c++-mode) ("\\.C\\'" . c++-mode) + ("\\.H\\'" . c++-mode) ;;; ("\\.mk\\'" . makefile-mode) ;;; ("[Mm]akefile" . makefile-mode) ;;; Less common extensions come here |