From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58968 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: Re: Latest v5-10 fails in gnus-convert-old-newsrc Date: Sun, 24 Oct 2004 12:00:35 -0400 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1098633711 9471 80.91.229.6 (24 Oct 2004 16:01:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Oct 2004 16:01:51 +0000 (UTC) Original-X-From: ding-owner+M7510@lists.math.uh.edu Sun Oct 24 18:01:40 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13] ident=mail) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CLkoN-0006uD-00 for ; Sun, 24 Oct 2004 18:01:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1CLknT-0002PH-00; Sun, 24 Oct 2004 11:00:43 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1CLknO-0002PC-00 for ding@lists.math.uh.edu; Sun, 24 Oct 2004 11:00:38 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1CLknN-0000y2-90 for ding@lists.math.uh.edu; Sun, 24 Oct 2004 11:00:37 -0500 Original-Received: from quimby.gnus.org (quimby.gnus.org [80.91.224.244]) by justine.libertine.org (Postfix) with ESMTP id D9A453A00BB for ; Sun, 24 Oct 2004 11:00:36 -0500 (CDT) Original-Received: from news by quimby.gnus.org with local (Exim 3.35 #1 (Debian)) id 1CLknM-0006dV-00 for ; Sun, 24 Oct 2004 18:00:36 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 37 Original-NNTP-Posting-Host: dialup-216-12-206-181.ev1.net Original-X-Trace: quimby.gnus.org 1098633636 24970 216.12.206.181 (24 Oct 2004 16:00:36 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Sun, 24 Oct 2004 16:00:36 +0000 (UTC) User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (windows-nt) Cancel-Lock: sha1:Fb4/IdCPGRgdh0rsz3jdb+e9OUo= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58968 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58968 Patric Mueller writes: > The current v5-10 branch fails in gnus-convert-old-newsrc with this > error message: > Wrong type argument: number-char-or-marker-p, "Gnus v5.10.6" > > I found the bug on line 2262. I assume 'gnus-version' should be > replaced with '(gnus-continuum-version)'. > > 2261: (while (and converters (< fcv (caar converters)) > 2262: (<= (caar converters) gnus-version)) > > Bye > Patric > > Index: gnus-start.el > =================================================================== > RCS file: /usr/local/cvsroot/gnus/lisp/gnus-start.el,v > retrieving revision 6.87.2.5 > diff -u -r6.87.2.5 gnus-start.el > --- gnus-start.el 21 Oct 2004 04:18:22 -0000 6.87.2.5 > +++ gnus-start.el 22 Oct 2004 03:32:35 -0000 > @@ -2259,7 +2259,7 @@ > ;; Perform converters to bring older version up to date. > (when (and converters (< fcv (caar converters))) > (while (and converters (< fcv (caar converters)) > - (<= (caar converters) gnus-version)) > + (<= (caar converters) (gnus-continuum-version))) > (let* ((converter-spec (pop converters)) > (convert-to (nth 1 converter-spec)) > (load-from (nth 2 converter-spec)) > > --=-=-=- Fixed. Kevin