Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
628b6035
Commit
628b6035
authored
Jan 17, 1996
by
Karl Heuer
Browse files
(auto-mode-alist): Use "\\`" instead of "^".
parent
27abb84f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/files.el
lisp/files.el
+2
-2
No files found.
lisp/files.el
View file @
628b6035
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment