(rmail-summary-mark-deleted): Recache summary.

This commit is contained in:
Chong Yidong 2009-01-27 03:05:18 +00:00
parent 04ce399c0e
commit 96a07ae931

View file

@ -714,7 +714,10 @@ a negative argument means to delete and move forward."
(if (looking-at "D")
(progn (delete-char 1) (insert " ")))
(delete-char 1)
(insert "D"))))
(insert "D"))
;; Register a new summary line.
(with-current-buffer rmail-buffer
(aset rmail-summary-vector (1- n) (rmail-create-summary-line n)))))
(beginning-of-line))
(defun rmail-summary-mark-undeleted (n)