From: Karl Heuer Date: Wed, 17 Jan 1996 19:14:20 +0000 (+0000) Subject: (auto-mode-alist): Use "\\`" instead of "^". X-Git-Tag: emacs-19.34~1655 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=628b60355299780dd84f1bcefb5cd665609de61a;p=emacs.git (auto-mode-alist): Use "\\`" instead of "^". --- diff --git a/lisp/files.el b/lisp/files.el index dbd8209fbdc..3ba373c8c87 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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)