summaryrefslogtreecommitdiff
path: root/lisp/mail/rmailsum.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-09-27 05:37:06 +0000
committerRichard M. Stallman <rms@gnu.org>1994-09-27 05:37:06 +0000
commit5f9afbd67399ba0ee6954b738f2d2b310150d69b (patch)
tree0a5f99dc648d18a668430d714b0c36bf1381eabb /lisp/mail/rmailsum.el
parent481775593d1fea0b59f581ccde52397a8a780a5a (diff)
downloademacs-5f9afbd67399ba0ee6954b738f2d2b310150d69b.tar.gz
(rmail-summary-delete-forward): Regexp for recognizing deleted message
should not require a space at the beginning of the line.
Diffstat (limited to 'lisp/mail/rmailsum.el')
-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 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 ()