(gnus-cache-braid-nov): Test if a line looks like a NOV.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 20 Mar 2003 00:32:33 +0000 (00:32 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 20 Mar 2003 00:32:33 +0000 (00:32 +0000)
lisp/ChangeLog
lisp/gnus-cache.el

index 2862e05..0a9528d 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-20  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-cache.el (gnus-cache-braid-nov): Test if a line looks like
+       a NOV.
+
 2003-03-20  Simon Josefsson  <jas@extundo.com>
 
        * message.el (message-use-idna): Disable if UTF-8 unavailable.
index 6431c81..ae987ec 100644 (file)
@@ -507,6 +507,7 @@ Returns the list of articles removed."
     (goto-char (point-min))
     (while cached
       (while (and (not (eobp))
+                 (looking-at "[0-9]+\t")
                  (< (read (current-buffer)) (car cached)))
        (forward-line 1))
       (beginning-of-line)