Mercurial > emacs
changeset 14205:1e6f316414cf
(auto-mode-alist): Use "\\`" instead of "^".
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 17 Jan 1996 19:14:20 +0000 |
parents | c0b44d3a8312 |
children | aca185f0fcd0 |
files | lisp/files.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)