diff options
| author | Karl Heuer <kwzh@gnu.org> | 1996-01-17 19:14:20 +0000 |
|---|---|---|
| committer | Karl Heuer <kwzh@gnu.org> | 1996-01-17 19:14:20 +0000 |
| commit | 628b60355299780dd84f1bcefb5cd665609de61a (patch) | |
| tree | e4974a09081b7a3faa091fbc1a839f6eb09f307e /lisp | |
| parent | 27abb84f2a81b49a95b6d0a437f9be0669b571e8 (diff) | |
| download | emacs-628b60355299780dd84f1bcefb5cd665609de61a.tar.gz | |
(auto-mode-alist): Use "\\`" instead of "^".
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/files.el | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
