mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
(rmail-first-unseen-message): Fix 1-off error.
This commit is contained in:
parent
e8c04c88ef
commit
bb9dcce1b1
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue