]> git.eshelyaron.com Git - emacs.git/commitdiff
(Auto Major Mode): Fix example.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 26 Nov 2008 16:11:58 +0000 (16:11 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 26 Nov 2008 16:11:58 +0000 (16:11 +0000)
doc/lispref/modes.texi

index 71db5cc7fd0eaae7abd27f62236e7ee954c35b92..8760109ecdda2400429ede2564b641aeb7350447 100644 (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))