* gnus-util.el (gnus-parse-without-error): Correct the loop.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 26 Jan 2002 10:42:54 +0000 (10:42 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 26 Jan 2002 10:42:54 +0000 (10:42 +0000)
lisp/ChangeLog
lisp/gnus-util.el

index 838491c..7f4d8dc 100644 (file)
@@ -1,5 +1,7 @@
 2002-01-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-util.el (gnus-parse-without-error): Correct the loop. 
+
        * gnus-sum.el (gnus-dependencies-add-header): Use in-reply-to if
        there are no references.
        (gnus-extract-message-id-from-in-reply-to): New function.
index 2cd5cb2..610ad5b 100644 (file)
@@ -1267,7 +1267,8 @@ SPEC is a predicate specifier that contains stuff like `or', `and',
   `(while (not (eobp))
      (condition-case ()
         (progn
-          ,@body)
+          ,@body
+          (goto-char (point-max)))
        (error
        (gnus-error 4 "Invalid data on line %d"
                    (count-lines (point-min) (point)))