From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Difficulties byte-compiling very large .el file Date: Fri, 28 Aug 2009 20:37:21 -0400 Message-ID: References: <794057160908191449t4b23080cjf2b85cb0f8e4f589@mail.gmail.com> <19091.47590.276871.440616@parhasard.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1251506273 17555 80.91.229.12 (29 Aug 2009 00:37:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 29 Aug 2009 00:37:53 +0000 (UTC) Cc: aemoncannon@gmail.com, emacs-devel@gnu.org To: Aidan Kehoe Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Aug 29 02:37:46 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MhBww-0004e7-4n for ged-emacs-devel@m.gmane.org; Sat, 29 Aug 2009 02:37:46 +0200 Original-Received: from localhost ([127.0.0.1]:56085 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MhBwv-0003qc-Gc for ged-emacs-devel@m.gmane.org; Fri, 28 Aug 2009 20:37:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MhBwe-0003dV-V6 for emacs-devel@gnu.org; Fri, 28 Aug 2009 20:37:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MhBwZ-0003bQ-G7 for emacs-devel@gnu.org; Fri, 28 Aug 2009 20:37:28 -0400 Original-Received: from [199.232.76.173] (port=51799 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MhBwZ-0003bM-5x for emacs-devel@gnu.org; Fri, 28 Aug 2009 20:37:23 -0400 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]:21620 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MhBwY-0003rD-U1 for emacs-devel@gnu.org; Fri, 28 Aug 2009 20:37:23 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhsFAAsVmEpFpYuS/2dsb2JhbACBU9dKhBkFh2Y X-IronPort-AV: E=Sophos;i="4.44,293,1249272000"; d="scan'208";a="44453476" Original-Received: from 69-165-139-146.dsl.teksavvy.com (HELO pastel.home) ([69.165.139.146]) by ironport2-out.teksavvy.com with ESMTP; 28 Aug 2009 20:36:22 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 9E4597F42; Fri, 28 Aug 2009 20:37:21 -0400 (EDT) In-Reply-To: <19091.47590.276871.440616@parhasard.net> (Aidan Kehoe's message of "Tue, 25 Aug 2009 11:16:06 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:114803 Archived-At: > Tangentially to this, you should be aware that several of your integer > constants are silently overflowing in that file. With an XEmacs with 31-bit Good point. I've installed a few changes which should now handle this a bit better (partly by using floats to represent larger integers, as we already did in string-to-number, partly by detecting overflows). Stefan