]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-mode-alist): Use "\\`" instead of "^".
authorKarl Heuer <kwzh@gnu.org>
Wed, 17 Jan 1996 19:14:20 +0000 (19:14 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 17 Jan 1996 19:14:20 +0000 (19:14 +0000)
lisp/files.el

index dbd8209fbdc4eff52cd157f7d761309ddc134bea..3ba373c8c874c0b1ad7bc7ddcb516c3f995d6bd7 100644 (file)
@@ -979,11 +979,11 @@ run `normal-mode' explicitly."
     ("\\.\\(arc\\|zip\\|lzh\\|zoo\\)\\'" . archive-mode)
     ;; Mailer puts message to be edited in
     ;; /tmp/Re.... or Message
-    ("^/tmp/Re" . text-mode)
+    ("\\`/tmp/Re" . text-mode)
     ("/Message[0-9]*\\'" . text-mode)
     ("/drafts/[0-9]+\\'" . mh-letter-mode)
     ;; some news reader is reported to use this
-    ("^/tmp/fol/" . text-mode)
+    ("\\`/tmp/fol/" . text-mode)
     ("\\.y\\'" . c-mode)
     ("\\.lex\\'" . c-mode)
     ("\\.oak\\'" . scheme-mode)