Mathias Dahl <[EMAIL PROTECTED]> writes:

I have tried to debug this without any luck. My current theory is that
for some reason the last `forward-char' is called when point is at the
end of the buffer. See if the following change in `tumme-line-up'
fixes the problem for you:

*** 20,26 ****
              (insert "\n")
            (insert " ")
            (setq count (1+ count))
!           (when (= count (- tumme-thumbs-per-row 1))
              (forward-char)
              (insert "\n")
              (setq count 0)))))
--- 20,27 ----
              (insert "\n")
            (insert " ")
            (setq count (1+ count))
!           (when (and (= count (- tumme-thumbs-per-row 1))
!                      (not (eobp)))
              (forward-char)
              (insert "\n")
              (setq count 0)))))

/Mathias



_______________________________________________
emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to