[gnus git] branch master updated: m0-5-313-g54c5fdf =6= mail-source.el (mail-source-fetch-pop, mail-source-check-pop): Fix again ; Merge branch 'master' of https://git.gnus.org/gnus ; Merge branch 'master' of https://git.gnus.org/gnus ; Merge branch 'master' of https://git.gnus.org/gnus ; Merge branch 'master' of https://git.gnus.org/gnus ; gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles corresponding to any existing group (Bug#14166)
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 54c5fdfcdcddeabaa068755f52ff6fa01e2d3c33 (commit)
via 86c43c85eddb512facef7dd552c89ebdbbd2d75d (commit)
via 81bd5af1fa0edd668a6d278c58b5810cf2058591 (commit)
via 927f0478a24b3fa1f3882b12443c712be4ab0f92 (commit)
via a203a1237e0214a684a96514818cf3206cffc609 (commit)
via 3e6ee7b4cd4dc4f5fd214b8ba08390fe6a36fc52 (commit)
from 48ad2f12e3a54eb97156c74e3281cf5bf0d0e459 (commit)
- Log -----------------------------------------------------------------
commit 54c5fdfcdcddeabaa068755f52ff6fa01e2d3c33
Author: Katsumi Yamaoka <[email protected]>
Date: Fri Apr 26 13:56:21 2013 +0000
mail-source.el (mail-source-fetch-pop, mail-source-check-pop): Fix again
diff --git a/lisp/mail-source.el b/lisp/mail-source.el
index ce1cb6c..7da2a0a 100644
--- a/lisp/mail-source.el
+++ b/lisp/mail-source.el
@@ -810,7 +810,7 @@ Deleting old (> %s day(s)) incoming mail file `%s'." diff bfile)
(let ((from (format "%s:%s:%s" server user port))
(mail-source-string (format "pop:%s@%s" user server))
(process-environment (if server
- (append (list (concat "MAILHOST=" server))
+ (cons (concat "MAILHOST=" server)
process-environment)
process-environment))
result)
@@ -880,7 +880,7 @@ Deleting old (> %s day(s)) incoming mail file `%s'." diff bfile)
(let ((from (format "%s:%s:%s" server user port))
(mail-source-string (format "pop:%s@%s" user server))
(process-environment (if server
- (append (list (concat "MAILHOST=" server))
+ (cons (concat "MAILHOST=" server)
process-environment)
process-environment))
result)
commit 86c43c85eddb512facef7dd552c89ebdbbd2d75d
Merge: 81bd5af 48ad2f1
Author: Katsumi Yamaoka <[email protected]>
Date: Fri Apr 26 13:45:47 2013 +0000
Merge branch 'master' of https://git.gnus.org/gnus
commit 81bd5af1fa0edd668a6d278c58b5810cf2058591
Merge: 927f047 c6b7a80
Author: Katsumi Yamaoka <[email protected]>
Date: Thu Apr 25 13:56:04 2013 +0000
Merge branch 'master' of https://git.gnus.org/gnus
commit 927f0478a24b3fa1f3882b12443c712be4ab0f92
Merge: a203a12 0dee933
Author: Katsumi Yamaoka <[email protected]>
Date: Wed Apr 17 12:55:47 2013 +0000
Merge branch 'master' of https://git.gnus.org/gnus
commit a203a1237e0214a684a96514818cf3206cffc609
Merge: 3e6ee7b 38e95df
Author: Katsumi Yamaoka <[email protected]>
Date: Wed Apr 17 12:55:09 2013 +0000
Merge branch 'master' of https://git.gnus.org/gnus
Conflicts:
lisp/ChangeLog
diff --cc lisp/ChangeLog
index dc7d4ba,0fb5ed5..43bd65e
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@@ -1,3 -1,8 +1,15 @@@
++2013-04-16 David Edmondson <[email protected]>
++
++ Support <img src="data:...">.
++
++ * shr.el (shr-image-from-data): New function.
++ (shr-tag-img): Use it.
++
+ 2013-04-14 Andrew Cohen <[email protected]>
+
+ * nnir.el (nnir-request-set-mark): Make sure we are in the right
+ group.
+
2013-04-12 Katsumi Yamaoka <[email protected]>
* gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
commit 3e6ee7b4cd4dc4f5fd214b8ba08390fe6a36fc52
Author: Katsumi Yamaoka <[email protected]>
Date: Fri Apr 12 15:17:35 2013 +0000
gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles corresponding to any existing group (Bug#14166)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9f5eeb8..dc7d4ba 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-12 Katsumi Yamaoka <[email protected]>
+
+ * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
+ corresponding to any existing group (Bug#14166).
+
2013-04-10 Andrew Cohen <[email protected]>
* nnir.el (number-sequence): No longer used.
diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el
index 3613555..362dd3e 100644
--- a/lisp/gnus-msg.el
+++ b/lisp/gnus-msg.el
@@ -538,7 +538,8 @@ instead."
(message-mail to subject other-headers continue
nil yank-action send-actions return-action))
(let ((buf (current-buffer))
- (gnus-newsgroup-name (or gnus-newsgroup-name ""))
+ ;; Don't use posting styles corresponding to any existing group.
+ (gnus-newsgroup-name "")
mail-buf)
(gnus-setup-message 'message
(message-mail to subject other-headers continue
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/mail-source.el | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project