changeset 9151:02bee4d2de9a

(rmail-summary-delete-forward): Regexp for recognizing deleted message should not require a space at the beginning of the line.
author Richard M. Stallman <rms@gnu.org>
date Tue, 27 Sep 1994 05:37:06 +0000
parents 642bbaf7c3fc
children 364abaa6ddf2
files lisp/mail/rmailsum.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rmailsum.el	Tue Sep 27 04:20:23 1994 +0000
+++ b/lisp/mail/rmailsum.el	Tue Sep 27 05:37:06 1994 +0000
@@ -431,7 +431,7 @@
       (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 ()