aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-09-27 05:37:06 +0000
committerRichard M. Stallman <[email protected]>1994-09-27 05:37:06 +0000
commit7434015f911f2601f7734079aed47a66d7071e4a (patch)
treea84e013c27ae232c4fe596c757cfeb22d8cfd5b4 /lisp
parentc5af3bb92d08949b67f1af50d17e439e73555834 (diff)
(rmail-summary-delete-forward): Regexp for recognizing deleted message
should not require a space at the beginning of the line.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/rmailsum.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index 67a4f72c02..2f7a8d4b47 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 ()