changeset 3509:a1ef317ceb18

(rmail-summary-next-msg): Fix number of dots in regexp.
author Richard M. Stallman <rms@gnu.org>
date Sat, 05 Jun 1993 21:18:11 +0000
parents dea00c8a47a6
children b4a552ca4e99
files lisp/mail/rmailsum.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rmailsum.el	Sat Jun 05 20:58:47 1993 +0000
+++ b/lisp/mail/rmailsum.el	Sat Jun 05 21:18:11 1993 +0000
@@ -367,7 +367,7 @@
 	(search (if (> number 0) 're-search-forward 're-search-backward))
 	(non-del-msg-found nil))
     (while (and (> count 0) (setq non-del-msg-found
-				  (or (funcall search "^.....[^D]" nil t)
+				  (or (funcall search "^....[^D]" nil t)
 				      non-del-msg-found)))
       (setq count (1- count))))
   (beginning-of-line)