]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-summary-delete-forward): Regexp for recognizing deleted message
authorRichard M. Stallman <rms@gnu.org>
Tue, 27 Sep 1994 05:37:06 +0000 (05:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 27 Sep 1994 05:37:06 +0000 (05:37 +0000)
should not require a space at the beginning of the line.

lisp/mail/rmailsum.el

index 67a4f72c02acd1c3e8fee72d1a399de41f954bfd..2f7a8d4b47e635fcc2bd6273af29e456fecec94c 100644 (file)
@@ -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 ()