1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(Auto Major Mode): Fix example.

This commit is contained in:
Chong Yidong 2008-11-26 16:11:58 +00:00
parent f6dc3bed46
commit 2674569bd5

View File

@ -687,7 +687,7 @@ init file.)
;; @r{File name (within directory) starts with a dot.}
'(("/\\.[^/]*\\'" . fundamental-mode)
;; @r{File name has no dot.}
("[^\\./]*\\'" . fundamental-mode)
("/[^\\./]*\\'" . fundamental-mode)
;; @r{File name ends in @samp{.C}.}
("\\.C\\'" . c++-mode))
auto-mode-alist))