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
4c4a44f3
Commit
4c4a44f3
authored
Aug 03, 1996
by
Paul Eggert
Browse files
(rmail-unix-mail-delimiter): Allow space or tab as
first character in mailbox part of `From ' line.
parent
f5792262
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lisp/mail/rmail.el
lisp/mail/rmail.el
+6
-1
No files found.
lisp/mail/rmail.el
View file @
4c4a44f3
...
...
@@ -232,10 +232,15 @@ Called with region narrowed to the message, including headers.")
;; From: Joe User
;; <joe@y.z>
;; can yield `From Joe User Fri Mar 22 08:11:15 1996'.
;; The mailbox can be removed or be replaced by white space, e.g.
;; From: "
Joe
User
"{space}{tab}
;; <joe@y.z>
;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996',
;; where {space} and {tab} represent the Ascii space and tab characters.
;; We want to match the results of any of these manglings.
;; The following regexp rejects names whose first characters are
;; obviously bogus, but after that anything goes.
"
\\
(
[^\0-\r
\^?].*\\
)
?
"
"
\\
(
[^\0-\
b\n-\
r\^?].*\\
)
?
"
;; The time the message was sent.
"
\\
(
[^\0-\r
\^?]+\\
)
+
" ; day of the week
...
...
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