emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/thumbs.el


From: Nick Roberts
Subject: [Emacs-diffs] Changes to emacs/lisp/thumbs.el
Date: Mon, 23 Jan 2006 01:09:26 +0000

Index: emacs/lisp/thumbs.el
diff -u emacs/lisp/thumbs.el:1.23 emacs/lisp/thumbs.el:1.24
--- emacs/lisp/thumbs.el:1.23   Fri Jan 20 04:43:02 2006
+++ emacs/lisp/thumbs.el        Mon Jan 23 01:09:26 2006
@@ -498,10 +498,11 @@
       (let (list)
        (goto-char (point-min))
        (while (not (eobp))
-         (if (thumbs-current-image)
-             (push (cons (point-marker)
-                         (thumbs-current-image))
-                   list))
+         (unless (= 0 (mod (point) (1+ thumbs-per-line)))
+           (if (thumbs-current-image)
+               (push (cons (point-marker)
+                           (thumbs-current-image))
+                   list)))
          (forward-char 1))
        (nreverse list)))))
 




reply via email to

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