From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58959 Path: main.gmane.org!not-for-mail From: Patric Mueller Newsgroups: gmane.emacs.gnus.general Subject: Latest v5-10 fails in gnus-convert-old-newsrc Date: Fri, 22 Oct 2004 05:36:39 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: Reply-To: bhaak@gmx.net NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1098561675 4914 80.91.229.6 (23 Oct 2004 20:01:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 23 Oct 2004 20:01:15 +0000 (UTC) Original-X-From: ding-owner+M7499=ding+2Daccount=gmane.org@lists.math.uh.edu Sat Oct 23 22:01:03 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 1CLS4U-0000MO-00 for ; Sat, 23 Oct 2004 22:01:02 +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 1CLS4U-0007KW-00 for ding-account@gmane.org; Sat, 23 Oct 2004 15:01:02 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1CKykm-0005Wt-00 for ding@lists.math.uh.edu; Fri, 22 Oct 2004 07:42:44 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1CKykh-0000S3-5F for ding@lists.math.uh.edu; Fri, 22 Oct 2004 07:42:39 -0500 Original-Received: from quimby.gnus.org (quimby.gnus.org [80.91.224.244]) by justine.libertine.org (Postfix) with ESMTP id 8D9AF3A0037 for ; Fri, 22 Oct 2004 07:42:38 -0500 (CDT) Original-Received: from news by quimby.gnus.org with local (Exim 3.35 #1 (Debian)) id 1CKykf-0001So-00 for ; Fri, 22 Oct 2004 14:42:37 +0200 Original-To: ding@gnus.org Original-Path: enki.local!not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 39 Original-NNTP-Posting-Host: 80-219-249-34.dclient.hispeed.ch Original-X-Trace: quimby.gnus.org 1098448957 5629 80.219.249.34 (22 Oct 2004 12:42:37 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Fri, 22 Oct 2004 12:42:37 +0000 (UTC) X-Heraklit: =?iso-8859-7?b?0Nzt9OEg8eXp?= User-Agent: Gnus/5.1006 (Gnus v5.10.6) Cancel-Lock: sha1:QRBtiwJCyKk1o2Dj2V21/fiW6PY= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58959 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58959 --=-=-= 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 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=gnus-start.el.diff 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)) --=-=-=--