diff options
| author | Roland McGrath <roland@gnu.org> | 1991-07-23 20:23:44 +0000 |
|---|---|---|
| committer | Roland McGrath <roland@gnu.org> | 1991-07-23 20:23:44 +0000 |
| commit | 462c10945e696f96cd6636cd7193de0654d1ca1c (patch) | |
| tree | ffb4e4de9604cc44d2469015f53847ccd83cc6a4 | |
| parent | b2b2c677c837418bdcfe5d1822b7502c7edf9d3a (diff) | |
| download | emacs-462c10945e696f96cd6636cd7193de0654d1ca1c.tar.gz | |
*** empty log message ***
| -rw-r--r-- | lisp/mail/rmail.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 94adb25a870..3147022d695 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1158,9 +1158,9 @@ and reverse search is specified by a negative numeric arg." (save-restriction (widen) (while (and (not found) (< current rmail-total-messages)) - (setq current (1+ current)) (if (rmail-message-labels-p current ", ?\\(unseen\\),") - (setq found current)))) + (setq found current)) + (setq current (1+ current)))) (if found (rmail-show-message found)))) |
