[gnus git] branch master updated: m0-7-31-gc5f073e =3= shr.el (shr-put-image): Silence compiler ; spam-stat.el (spam-stat-save): No need to tweak font-lock in temp buffers ; shr.el (shr-put-image): Silence compiler

Katsumi Yamaoka <[email protected]>
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  c5f073e9dcab6689c65b14735b169a91d5997963 (commit)
       via  a857ed8cf18d6a821fa3334a50d414b5bdb525d2 (commit)
       via  fef40b8729f1b1ca3fac79e5ec4561304de1ad5f (commit)
      from  c5af57ca918b418af80f1174fdae5022bed489e7 (commit)


- Log -----------------------------------------------------------------
commit c5f073e9dcab6689c65b14735b169a91d5997963
Author: Glenn Morris <[email protected]>
Date:   Thu May 30 06:34:24 2013 +0000

    shr.el (shr-put-image): Silence compiler

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d8d6289..ce46726 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
 2013-05-30  Glenn Morris  <[email protected]>
 
+	* nnmail.el (nnmail-fancy-expiry-target):
+	Also bind mail-dont-reply-to-names.
+
 	* spam-stat.el (spam-stat-save):
 	No need to tweak font-lock in temp buffers.
 
diff --git a/lisp/nnmail.el b/lisp/nnmail.el
index 28b2836..5be449e 100644
--- a/lisp/nnmail.el
+++ b/lisp/nnmail.el
@@ -1952,8 +1952,10 @@ If TIME is nil, then return the cutoff time for oldness instead."
        ((and (equal header 'to-from)
 	     (or (string-match (cadr regexp-target-pair) from)
 		 (and (string-match (cadr regexp-target-pair) to)
-		      (let ((rmail-dont-reply-to-names
-			     (message-dont-reply-to-names)))
+		      (let* ((mail-dont-reply-to-names
+			      (message-dont-reply-to-names))
+			     (rmail-dont-reply-to-names ; obsolete since 24.1
+			      mail-dont-reply-to-names))
 			(equal (if (fboundp 'rmail-dont-reply-to)
 				   (rmail-dont-reply-to from)
 				 (mail-dont-reply-to from)) "")))))

commit a857ed8cf18d6a821fa3334a50d414b5bdb525d2
Author: Glenn Morris <[email protected]>
Date:   Thu May 30 06:34:06 2013 +0000

    spam-stat.el (spam-stat-save): No need to tweak font-lock in temp buffers

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d3398ad..d8d6289 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
 2013-05-30  Glenn Morris  <[email protected]>
 
+	* spam-stat.el (spam-stat-save):
+	No need to tweak font-lock in temp buffers.
+
 	* shr.el (shr-put-image): Silence compiler.
 
 2013-05-29  Glenn Morris  <[email protected]>
diff --git a/lisp/spam-stat.el b/lisp/spam-stat.el
index d75e819..135bfd4 100644
--- a/lisp/spam-stat.el
+++ b/lisp/spam-stat.el
@@ -412,8 +412,7 @@ With a prefix argument save unconditionally."
   (when (or force spam-stat-dirty)
     (let ((coding-system-for-write spam-stat-coding-system))
       (with-temp-file spam-stat-file
-	(let ((standard-output (current-buffer))
-	      (font-lock-maximum-size 0))
+	(let ((standard-output (current-buffer)))
 	  (insert (format ";-*- coding: %s; -*-\n" spam-stat-coding-system))
 	  (insert (format "(setq spam-stat-ngood %d spam-stat-nbad %d
 spam-stat (spam-stat-to-hash-table '(" spam-stat-ngood spam-stat-nbad))

commit fef40b8729f1b1ca3fac79e5ec4561304de1ad5f
Author: Glenn Morris <[email protected]>
Date:   Thu May 30 06:33:39 2013 +0000

    shr.el (shr-put-image): Silence compiler

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 10d5afc..d3398ad 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-30  Glenn Morris  <[email protected]>
+
+	* shr.el (shr-put-image): Silence compiler.
+
 2013-05-29  Glenn Morris  <[email protected]>
 
 	* gnus-ems.el (set-process-plist): Every supported Emacs has this.
diff --git a/lisp/shr.el b/lisp/shr.el
index 2d2272d..9284da4 100644
--- a/lisp/shr.el
+++ b/lisp/shr.el
@@ -631,12 +631,13 @@ size, and full-buffer size."
 		  (overlay-put overlay 'face 'default)))
 	    (insert-image image (or alt "*")))
 	  (put-text-property start (point) 'image-size size)
-	  (when (if (fboundp 'image-multi-frame-p)
+	  (when (cond ((fboundp 'image-multi-frame-p)
 		    ;; Only animate multi-frame things that specify a
 		    ;; delay; eg animated gifs as opposed to
 		    ;; multi-page tiffs.  FIXME?
-		    (cdr (image-multi-frame-p image))
-		  (image-animated-p image))
+		       (cdr (image-multi-frame-p image)))
+		      ((fboundp 'image-animated-p)
+		       (image-animated-p image)))
 	    (image-animate image nil 60)))
 	image)
     (insert alt)))

-----------------------------------------------------------------------
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    |   10 ++++++++++
 lisp/nnmail.el    |    6 ++++--
 lisp/shr.el       |   13 +++++++------
 lisp/spam-stat.el |    3 +--
 4 files changed, 22 insertions(+), 10 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
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.