Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ba9f6413
Commit
ba9f6413
authored
Jul 05, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(gnus-mail-reply-using-mhe): Handle case of no subject.
parent
69718e9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/gnusmail.el
lisp/gnusmail.el
+2
-1
No files found.
lisp/gnusmail.el
View file @
ba9f6413
...
...
@@ -152,7 +152,8 @@ The command \\[mh-yank-cur-msg] yank the original message into current buffer."
(
save-restriction
(
gnus-article-show-all-headers
)
;I don't think this is really needed.
(
setq
from
(
gnus-fetch-field
"from"
)
subject
(
let
((
subject
(
gnus-fetch-field
"subject"
)))
subject
(
let
((
subject
(
or
(
gnus-fetch-field
"subject"
)
"(None)"
)))
(
if
(
and
subject
(
not
(
string-match
"^[Rr][Ee]:.+$"
subject
)))
(
concat
"Re: "
subject
)
subject
))
...
...
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