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
ee30fbcd
Commit
ee30fbcd
authored
Mar 04, 2012
by
Thierry Volpiatto
Committed by
Katsumi Yamaoka
Mar 04, 2012
Browse files
gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus isn't running (bug#10897).
parent
f20f95c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+5
-0
lisp/gnus/gnus-msg.el
lisp/gnus/gnus-msg.el
+4
-2
No files found.
lisp/gnus/ChangeLog
View file @
ee30fbcd
2012-03-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
* gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
isn't running (bug#10897).
2012-02-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
* shr.el (shr-column-specs): Protect against TDs with "width: 0%".
...
...
lisp/gnus/gnus-msg.el
View file @
ee30fbcd
...
...
@@ -478,7 +478,8 @@ Thank you for your help in stamping out bugs.
;;;###autoload
(defun gnus-msg-mail (&optional to subject other-headers continue
switch-action yank-action send-actions return-action)
switch-action yank-action send-actions
return-action)
"
Start
editing
a
mail
message
to
be
sent.
Like
`
message-mail
',
but
with
Gnus
paraphernalia,
particularly
the
Gcc:
header
for
archiving
purposes.
...
...
@@ -486,7 +487,8 @@ If Gnus isn't running, a plain `message-mail' setup is used
instead.
"
(interactive)
(if (not (gnus-alive-p))
(message-mail)
(message-mail to subject other-headers continue
nil yank-action send-actions return-action)
(let ((buf (current-buffer))
mail-buf)
(gnus-setup-message 'message
...
...
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