mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-04 11:40:22 +00:00
(rmail-first-unseen-message): Fix 1-off error.
This commit is contained in:
parent
e8c04c88ef
commit
bb9dcce1b1
@ -1734,7 +1734,7 @@ Interactively, empty argument means use same regexp used last time."
|
||||
found)
|
||||
(save-restriction
|
||||
(widen)
|
||||
(while (and (not found) (< current rmail-total-messages))
|
||||
(while (and (not found) (<= current rmail-total-messages))
|
||||
(if (rmail-message-labels-p current ", ?\\(unseen\\),")
|
||||
(setq found current))
|
||||
(setq current (1+ current))))
|
||||
|
Loading…
Reference in New Issue
Block a user