diff options
| author | Katsumi Yamaoka | 2013-04-12 15:17:47 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2013-04-12 15:17:47 +0000 |
| commit | 320742098b941833731b20d4bd2de7cc4c93ec76 (patch) | |
| tree | 657176bba459a3bc5ca94131cd7408196b86d2e8 | |
| parent | f24e0036b1beb5e610e8691ec511f7d87b5aa993 (diff) | |
| download | emacs-320742098b941833731b20d4bd2de7cc4c93ec76.tar.gz emacs-320742098b941833731b20d4bd2de7cc4c93ec76.zip | |
gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles corresponding to any existing group (Bug#14166)
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-msg.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 58de51672e6..f15ed7e707c 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-04-12 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles | ||
| 4 | corresponding to any existing group (Bug#14166). | ||
| 5 | |||
| 1 | 2013-04-10 Andrew Cohen <cohen@bu.edu> | 6 | 2013-04-10 Andrew Cohen <cohen@bu.edu> |
| 2 | 7 | ||
| 3 | * nnir.el (number-sequence): No longer used. | 8 | * nnir.el (number-sequence): No longer used. |
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 36135556c73..362dd3ea7f0 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el | |||
| @@ -538,7 +538,8 @@ instead." | |||
| 538 | (message-mail to subject other-headers continue | 538 | (message-mail to subject other-headers continue |
| 539 | nil yank-action send-actions return-action)) | 539 | nil yank-action send-actions return-action)) |
| 540 | (let ((buf (current-buffer)) | 540 | (let ((buf (current-buffer)) |
| 541 | (gnus-newsgroup-name (or gnus-newsgroup-name "")) | 541 | ;; Don't use posting styles corresponding to any existing group. |
| 542 | (gnus-newsgroup-name "") | ||
| 542 | mail-buf) | 543 | mail-buf) |
| 543 | (gnus-setup-message 'message | 544 | (gnus-setup-message 'message |
| 544 | (message-mail to subject other-headers continue | 545 | (message-mail to subject other-headers continue |