diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-12-26 19:46:19 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-12-26 19:46:27 +0100 |
commit | ea5e33d1da3b363e60c50171c62edba121086551 (patch) | |
tree | b854d14ff0c5959508076e5e6043529b82c3f85e /lisp/gnus/nnheader.el | |
parent | 9b5ac5f1bc997577542a4c914fe9d30f80add950 (diff) | |
download | emacs-ea5e33d1da3b363e60c50171c62edba121086551.tar.gz emacs-ea5e33d1da3b363e60c50171c62edba121086551.tar.bz2 emacs-ea5e33d1da3b363e60c50171c62edba121086551.zip |
Fix bogus test in body of a while loop
* lisp/gnus/nnheader.el (nnheader-find-nov-line): Fix return value
from while loop.
Diffstat (limited to 'lisp/gnus/nnheader.el')
-rw-r--r-- | lisp/gnus/nnheader.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/nnheader.el b/lisp/gnus/nnheader.el index 28c4cebb2d1..a30fa637960 100644 --- a/lisp/gnus/nnheader.el +++ b/lisp/gnus/nnheader.el @@ -487,8 +487,8 @@ the line could be found." (< num article))) (forward-line 1) (setq found (point)) - (or (eobp) - (= (setq num (read cur)) article))) + (unless (eobp) + (setq num (read cur)))) (unless (eq num article) (goto-char found))) (beginning-of-line) |