From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/62257 Path: news.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: High uid breaks (message-unique-id) Date: Wed, 15 Mar 2006 09:49:50 +0100 Message-ID: <871wx4drdd.fsf@latte.josefsson.org> References: <871wx5f6w7.fsf@latte.josefsson.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1142412805 15900 80.91.229.2 (15 Mar 2006 08:53:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 15 Mar 2006 08:53:25 +0000 (UTC) Original-X-From: ding-owner+m10784@lists.math.uh.edu Wed Mar 15 09:53:22 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 1FJRkj-00025C-Kv for ding-account@gmane.org; Wed, 15 Mar 2006 09:53:09 +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 1FJRke-0001bH-00; Wed, 15 Mar 2006 02:53:04 -0600 Original-Received: from nas01.math.uh.edu ([129.7.128.39]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1FJRhn-0001am-00 for ding@lists.math.uh.edu; Wed, 15 Mar 2006 02:50:07 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas01.math.uh.edu with esmtp (Exim 4.52) id 1FJRhm-0005qK-0v for ding@lists.math.uh.edu; Wed, 15 Mar 2006 02:50:07 -0600 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net ([217.13.230.178] helo=yxa.extundo.com) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1FJRhg-00026u-00 for ; Wed, 15 Mar 2006 09:50:00 +0100 Original-Received: from localhost.localdomain (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.13.4/8.13.4/Debian-3) with ESMTP id k2F8nrQR025714 for ; Wed, 15 Mar 2006 09:49:54 +0100 Original-To: ding@gnus.org OpenPGP: id=B565716F; url=http://josefsson.org/key.txt X-Hashcash: 1:21:060315:ding@gnus.org::1HcoY034WdoBaiiT:Y//Y In-Reply-To: (Reiner Steib's message of "Tue, 14 Mar 2006 20:13:19 +0100") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,FORGED_RCVD_HELO autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on yxa-iv X-Virus-Scanned: ClamAV version 0.88, clamav-milter version 0.87 on yxa.extundo.com X-Virus-Status: Clean X-Spam-Score: -2.5 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:62257 Archived-At: Reiner Steib writes: >>> Simon Josefsson writes: > [...] >>>> - (if (memq system-type '(ms-dos emx vax-vms)) >>>> + (if (or (memq system-type '(ms-dos emx vax-vms)) >>>> + ;; message-number-base36 doesn't handle bigints. >>>> + (float (user-uid))) > > (float (user-uid)) always is non-nil. Shouldn't this be `floatp' > instead of `float'? Yes, thanks! Fixed.