1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(rmail-summary-next-msg): Fix number of dots in regexp.

This commit is contained in:
Richard M. Stallman 1993-06-05 21:18:11 +00:00
parent d2ae6f7e7a
commit 682ac5eb5b

View File

@ -367,7 +367,7 @@ messages, or backward if NUMBER is negative."
(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)