aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-05 21:18:11 +0000
committerRichard M. Stallman1993-06-05 21:18:11 +0000
commit682ac5eb5b71f0980594cee295f14d8ce89723c6 (patch)
tree7843945087dfe2ad9b8239aec101baa0821becfe
parentd2ae6f7e7aef2682bdb6f5af9295898d9209339c (diff)
downloademacs-682ac5eb5b71f0980594cee295f14d8ce89723c6.tar.gz
emacs-682ac5eb5b71f0980594cee295f14d8ce89723c6.zip
(rmail-summary-next-msg): Fix number of dots in regexp.
-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 b727951a772..b9d4a82892a 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -367,7 +367,7 @@ messages, or backward if NUMBER is negative."
367 (search (if (> number 0) 're-search-forward 're-search-backward)) 367 (search (if (> number 0) 're-search-forward 're-search-backward))
368 (non-del-msg-found nil)) 368 (non-del-msg-found nil))
369 (while (and (> count 0) (setq non-del-msg-found 369 (while (and (> count 0) (setq non-del-msg-found
370 (or (funcall search "^.....[^D]" nil t) 370 (or (funcall search "^....[^D]" nil t)
371 non-del-msg-found))) 371 non-del-msg-found)))
372 (setq count (1- count)))) 372 (setq count (1- count))))
373 (beginning-of-line) 373 (beginning-of-line)