From: Richard M. Stallman Date: Tue, 27 Sep 1994 05:37:06 +0000 (+0000) Subject: (rmail-summary-delete-forward): Regexp for recognizing deleted message X-Git-Tag: emacs-19.34~6703 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7434015f911f2601f7734079aed47a66d7071e4a;p=emacs.git (rmail-summary-delete-forward): Regexp for recognizing deleted message should not require a space at the beginning of the line. --- diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 67a4f72c02a..2f7a8d4b47e 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -431,7 +431,7 @@ With prefix argument, delete and move backward." (rmail-summary-mark-deleted del-msg) (while (and (not (if backward (bobp) (eobp))) (save-excursion (beginning-of-line) - (looking-at " +[0-9]+D"))) + (looking-at " *[0-9]+D"))) (forward-line (if backward -1 1)))))) (defun rmail-summary-delete-backward ()