bug-gnu-emacs
[Top][All Lists]
Advanced

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

Re: rmail can't delete message 10000 and later


From: Richard Stallman
Subject: Re: rmail can't delete message 10000 and later
Date: Tue, 31 Jul 2007 16:22:20 -0400

Does this patch fix it?

*** rmailsum.el 25 Jul 2007 11:49:20 -0400      1.144.2.2
--- rmailsum.el 31 Jul 2007 14:23:05 -0400      
***************
*** 288,296 ****
                    (if (zerop (% rmail-new-summary-line-count 10))
                        (message "Computing summary lines...%d"
                                 rmail-new-summary-line-count))
!                   (rmail-make-summary-line-1 msg)))))
      ;; Fix up the part of the summary that says "deleted" or "unseen".
!     (aset line 5
          (if (rmail-message-deleted-p msg) ?\D
            (if (= ?0 (char-after (+ 3 (rmail-msgbeg msg))))
                ?\- ?\ )))
--- 288,298 ----
                    (if (zerop (% rmail-new-summary-line-count 10))
                        (message "Computing summary lines...%d"
                                 rmail-new-summary-line-count))
!                   (rmail-make-summary-line-1 msg))))
!       delpos)
      ;; Fix up the part of the summary that says "deleted" or "unseen".
!     (string-match "[0-9]+" line)
!     (aset line (match-end 0)
          (if (rmail-message-deleted-p msg) ?\D
            (if (= ?0 (char-after (+ 3 (rmail-msgbeg msg))))
                ?\- ?\ )))




reply via email to

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