aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-06-03 16:21:13 -0700
committerPaul Eggert2011-06-03 16:21:13 -0700
commit4751effbbce465109c28dddec695f1d34640c675 (patch)
tree34d448ca80f275cd280ffc0c309f04f822aac93c
parentaa76b908750df2d882a3a7767133928435b0fe85 (diff)
downloademacs-4751effbbce465109c28dddec695f1d34640c675.tar.gz
emacs-4751effbbce465109c28dddec695f1d34640c675.zip
* buffers.texi (Buffers): Correct the size limit.
-rw-r--r--doc/emacs/buffers.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/emacs/buffers.texi b/doc/emacs/buffers.texi
index 9463b02464d..ea48be48bf1 100644
--- a/doc/emacs/buffers.texi
+++ b/doc/emacs/buffers.texi
@@ -43,8 +43,9 @@ can be different from the value in other buffers. @xref{Locals}.
43 A buffer's size cannot be larger than some maximum, which is defined 43 A buffer's size cannot be larger than some maximum, which is defined
44by the largest buffer position representable by the @dfn{Emacs 44by the largest buffer position representable by the @dfn{Emacs
45integer} data type. This is because Emacs tracks buffer positions 45integer} data type. This is because Emacs tracks buffer positions
46using that data type. For most machines, the maximum buffer size 46using that data type. For 64-bit machines, the maximum buffer size
47enforced by the data types is @math{2^61 - 2} bytes, or about 2 EiB. 47enforced by the data types is @math{2^61 - 2} bytes, or about 2 EiB.
48For most 32-bit machines, the maximum is @math{2^31 - 1} bytes, or about 2 GiB.
48For some older machines, the maximum is @math{2^29 - 2} bytes, or 49For some older machines, the maximum is @math{2^29 - 2} bytes, or
49about 512 MiB. Buffer sizes are also limited by the size of Emacs's 50about 512 MiB. Buffer sizes are also limited by the size of Emacs's
50virtual memory. 51virtual memory.