changeset 69403:ecd9a20a44b0

(rmail-summary-next-msg): Skip deleted messages, where "D" is the 6th character.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 11 Mar 2006 16:18:20 +0000
parents 2413e06fae9c
children 26f292c725f1
files lisp/mail/rmailsum.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rmailsum.el	Sat Mar 11 16:03:03 2006 +0000
+++ b/lisp/mail/rmailsum.el	Sat Mar 11 16:18:20 2006 +0000
@@ -535,7 +535,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)