# HG changeset patch # User Richard M. Stallman # Date 739315091 0 # Node ID a1ef317ceb181dad545e68be5ea22d9fbe8a63fe # Parent dea00c8a47a662da84dbf0ee76ce26d720ad99d9 (rmail-summary-next-msg): Fix number of dots in regexp. diff -r dea00c8a47a6 -r a1ef317ceb18 lisp/mail/rmailsum.el --- 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)