From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sven Joachim Newsgroups: gmane.emacs.help Subject: Re: opening large files (few hundred meg) Date: Wed, 30 Jan 2008 17:55:41 +0100 Message-ID: <87zlundzhu.fsf@gmx.de> References: <1f94fef6-a335-4ce5-8d4b-7e87025a28dc@e32g2000prn.googlegroups.com> <87r6g1esga.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1201714927 25305 80.91.229.12 (30 Jan 2008 17:42:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Jan 2008 17:42:07 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 30 18:42:28 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JKGx0-0005WY-7B for geh-help-gnu-emacs@m.gmane.org; Wed, 30 Jan 2008 18:42:18 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKGwZ-0008F2-3E for geh-help-gnu-emacs@m.gmane.org; Wed, 30 Jan 2008 12:41:51 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!goblin1!goblin.stu.neva.ru!uio.no!quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 18 Original-NNTP-Posting-Host: p548659ba.dip.t-dialin.net Original-X-Trace: quimby.gnus.org 1201712062 6208 84.134.89.186 (30 Jan 2008 16:54:22 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Wed, 30 Jan 2008 16:54:22 +0000 (UTC) User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:y6kLHyleZnC6j9l05NU0aibwDts= Original-Xref: shelby.stanford.edu gnu.emacs.help:155709 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:51092 Archived-At: On 2008-01-30 16:12 +0100, Stefan Monnier wrote: > Currently, the largest integer is 128MB. This can be easily bumped up > to 256MB (I'm using such a hack on my local Emacs). Eh? The largest integer _is_ already (256 MB -1) in Emacs 22: (* 256 1024 1023) => 268173312 (* 256 1024 1024) => -268435456 (- (* 256 1024 1024) 1) => 268435455 Slightly confused, Sven