[gnus git] branch master updated: m0-13-39-gf4a053c =1= message.el (message-send-form-letter): Fix confusion with `format'

Katsumi Yamaoka <[email protected]> Thu, 06 Aug 2015 06:16:54 +0200
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  f4a053c5739d1bd3374fad6591b6779fda5f0b43 (commit)
      from  2e08bfa0d105cd6146dd45f2052a19a8b58b2440 (commit)


- Log -----------------------------------------------------------------
commit f4a053c5739d1bd3374fad6591b6779fda5f0b43
Author: Paul Eggert <[email protected]>
Date:   Thu Aug 6 04:16:45 2015 +0000

    message.el (message-send-form-letter): Fix confusion with `format'

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e21045d..324f473 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2015-08-06  Paul Eggert  <[email protected]>
+
+	* message.el (message-send-form-letter): Change (message (format ...))
+	to (message ...).  This lessens the probability of confusion when
+	the output of `format' contains `%'.
+
 2015-08-04  David Kastrup  <[email protected]>
 
 	* gnus-art.el (gnus-article-describe-key)
diff --git a/lisp/message.el b/lisp/message.el
index 2bc8116..26655f3 100644
--- a/lisp/message.el
+++ b/lisp/message.el
@@ -8532,7 +8532,7 @@ Header and body are separated by `mail-header-separator'."
 	    (progn
 	      (setq sent (1+ sent))
 	      (message-send-and-exit))
-	  (message (format "Message to `%s' skipped." to))
+	  (message "Message to `%s' skipped." to)
 	  (setq skipped (1+ skipped)))
 	(when (buffer-live-p buff)
 	  (kill-buffer buff))))

-----------------------------------------------------------------------
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/ChangeLog  |    6 ++++++
 lisp/message.el |    2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

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