emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 70cfe9d: Find message.el thumbnail toggling


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 70cfe9d: Find message.el thumbnail toggling
Date: Wed, 24 Aug 2016 21:56:25 +0000 (UTC)

branch: master
commit 70cfe9df957bd2f0699f62fe5e69176313f7c8f0
Author: Lars Magne Ingebrigtsen <address@hidden>
Commit: Lars Magne Ingebrigtsen <address@hidden>

    Find message.el thumbnail toggling
    
    * lisp/gnus/message.el (message-toggle-image-thumbnails):
    Don't infloop when toggling thumbnails.
---
 lisp/gnus/message.el |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 2ce9737..cb4843e 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -8399,7 +8399,8 @@ Used in `message-simplify-recipients'."
          (when (and (consp props)
                     (eq (car props) 'image))
            (put-text-property (point) (1+ (point)) 'display nil)
-           (setq displayed t)))))
+           (setq displayed t)))
+       (forward-char 1)))
     (unless displayed
       (save-excursion
        (goto-char (point-min))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]