From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61863 Path: news.gmane.org!not-for-mail From: Reiner Steib Newsgroups: gmane.emacs.gnus.general Subject: Re: Error when calling nnml-generate-nov-databases Date: Mon, 06 Feb 2006 20:06:32 +0100 Message-ID: References: <87psmenhur.fsf@ID-24456.user.uni-berlin.de> Reply-To: Reiner Steib NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1139252862 22911 80.91.229.2 (6 Feb 2006 19:07:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 6 Feb 2006 19:07:42 +0000 (UTC) Cc: bugs@gnus.org Original-X-From: ding-owner+m10393@lists.math.uh.edu Mon Feb 06 20:07:30 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F6BhZ-0004hl-Gl for ding-account@gmane.org; Mon, 06 Feb 2006 20:07:06 +0100 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 1F6BhV-0002pl-00; Mon, 06 Feb 2006 13:07:01 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1F6BhJ-0002pg-00 for ding@lists.math.uh.edu; Mon, 06 Feb 2006 13:06:49 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1F6BhC-0003B9-Mg for ding@lists.math.uh.edu; Mon, 06 Feb 2006 13:06:49 -0600 Original-Received: from mail.uni-ulm.de ([134.60.1.1]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1F6Bh6-0003N0-00; Mon, 06 Feb 2006 20:06:36 +0100 Original-Received: from bridgekeeper.physik.uni-ulm.de (bridgekeeper.physik.uni-ulm.de [134.60.10.123]) by mail.uni-ulm.de (8.13.4/8.13.4) with ESMTP id k16J6WLK027526; Mon, 6 Feb 2006 20:06:33 +0100 (MET) Original-Received: by bridgekeeper.physik.uni-ulm.de (Postfix, from userid 170) id 4A24C11101; Mon, 6 Feb 2006 20:06:32 +0100 (CET) Original-To: Christoph Conrad , Mail-Followup-To: , Christoph Conrad X-Face: :6KQZ[nyoS_edmB.%gw-=)BYth^|2+Y+^cu%I$FSx!&>-'om>3H7A|M&n(V7fIo3P.;yo.b yq4$p;ZaBtkv)\}biaiBQe"mD}iib1AA@99-fZ7i*bLhNRVC&0Wkxg9)SH?oWc@{ In-Reply-To: <87psmenhur.fsf@ID-24456.user.uni-berlin.de> (Christoph Conrad's message of "Fri, 27 Jan 2006 10:24:28 +0100") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) X-DCC-servers-Metrics: gemini 1049; Body=3 Fuz1=3 Fuz2=3 X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61863 Archived-At: [ Redirecting to ding ] On Fri, Jan 27 2006, Christoph Conrad wrote: > No Gnus v0.4 > GNU Emacs 22.0.50.1 (i686-pc-linux-gnu) > of 2006-01-27 on brabbelbox > 200 news.online.de InterNetNews NNRP server INN 2.3.5 ready (posting ok). > > Debugger entered--Lisp error: (range-error "truncate" 1131214865.0) > format("%s %d %d y\n" "trash\\.cur" 1131214865.0 1131214599.0) > nnmail-generate-active((("trash.cur" (1131214599.0 . 1131214865.0)) > ("Von-Uni" (617 . 741)) [...])) > nnmail-save-active((("trash.cur" (1131214599.0 . 1131214865.0)) > ("Von-Uni" (617 . 741)) [...] ("bogus" (2566 . 2848))) > "/home/cc/Mail/active") > nnml-generate-nov-databases-1("/home/cc/Mail/trash/cur" > ("/home/cc/Mail/trash/" "/home/cc/Mail/")) > nnml-generate-nov-databases-1("/home/cc/Mail/trash" > ("/home/cc/Mail/")) nnml-generate-nov-databases-1("/home/cc/Mail/" > nil t) nnml-generate-nov-databases("") > call-interactively(nnml-generate-nov-databases) > execute-extended-command(nil) > call-interactively(execute-extended-command) Hm, 1131214865.0 is larger than `most-positive-fixnum' (the largest value that is representable in a Lisp integer) on your machine: --8<---------------cut here---------------start------------->8--- ELISP> system-configuration "i686-pc-linux-gnu" ELISP> most-positive-fixnum 268435455 ELISP> (with-temp-buffer (require 'nnmail) (nnmail-generate-active '(("trash.cur" (1131214599.0 . 1131214865.0)) ("Von-Uni" (617 . 741)) )) (buffer-string)) *** Eval error *** Arithmetic range error: "truncate", 1131214865.0 --8<---------------cut here---------------end--------------->8--- --8<---------------cut here---------------start------------->8--- ELISP> system-configuration "x86_64-unknown-linux-gnu" ELISP> most-positive-fixnum 1152921504606846975 ELISP> (with-temp-buffer (require 'nnmail) (nnmail-generate-active '(("trash.cur" (1131214599.0 . 1131214865.0)) ("Von-Uni" (617 . 741)) )) (buffer-string)) "trash.cur 1131214865 1131214599 y\nVon-Uni 741 617 y\n" --8<---------------cut here---------------end--------------->8--- Could you investigate where the strange article counts in "trash.cur" comes from? Bye, Reiner. -- ,,, (o o) ---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/