# HG changeset patch # User Karl Heuer # Date 821906060 0 # Node ID 1e6f316414cfd4e1b1e8b5bab8b4dc310d51c15e # Parent c0b44d3a83121f6c87cb942cc22defc6914e780d (auto-mode-alist): Use "\\`" instead of "^". diff -r c0b44d3a8312 -r 1e6f316414cf lisp/files.el --- a/lisp/files.el Wed Jan 17 19:03:02 1996 +0000 +++ b/lisp/files.el Wed Jan 17 19:14:20 1996 +0000 @@ -979,11 +979,11 @@ ("\\.\\(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)