]> code.delx.au - gnu-emacs/commitdiff
* buffers.texi (Buffers): Correct the size limit.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 Jun 2011 23:21:13 +0000 (16:21 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 Jun 2011 23:21:13 +0000 (16:21 -0700)
doc/emacs/buffers.texi

index 9463b02464de7899cae0d5b37ef9b178f6a575bb..ea48be48bf1a0747bf66a1e89862e6da712ad3f4 100644 (file)
@@ -43,8 +43,9 @@ can be different from the value in other buffers.  @xref{Locals}.
   A buffer's size cannot be larger than some maximum, which is defined
 by the largest buffer position representable by the @dfn{Emacs
 integer} data type.  This is because Emacs tracks buffer positions
-using that data type.  For most machines, the maximum buffer size
+using that data type.  For 64-bit machines, the maximum buffer size
 enforced by the data types is @math{2^61 - 2} bytes, or about 2 EiB.
+For most 32-bit machines, the maximum is @math{2^31 - 1} bytes, or about 2 GiB.
 For some older machines, the maximum is @math{2^29 - 2} bytes, or
 about 512 MiB.  Buffer sizes are also limited by the size of Emacs's
 virtual memory.