diff options
| author | Paul Eggert | 2011-06-03 16:21:13 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-03 16:21:13 -0700 |
| commit | 4751effbbce465109c28dddec695f1d34640c675 (patch) | |
| tree | 34d448ca80f275cd280ffc0c309f04f822aac93c | |
| parent | aa76b908750df2d882a3a7767133928435b0fe85 (diff) | |
| download | emacs-4751effbbce465109c28dddec695f1d34640c675.tar.gz emacs-4751effbbce465109c28dddec695f1d34640c675.zip | |
* buffers.texi (Buffers): Correct the size limit.
| -rw-r--r-- | doc/emacs/buffers.texi | 3 |
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 |
| 44 | by the largest buffer position representable by the @dfn{Emacs | 44 | by the largest buffer position representable by the @dfn{Emacs |
| 45 | integer} data type. This is because Emacs tracks buffer positions | 45 | integer} data type. This is because Emacs tracks buffer positions |
| 46 | using that data type. For most machines, the maximum buffer size | 46 | using that data type. For 64-bit machines, the maximum buffer size |
| 47 | enforced by the data types is @math{2^61 - 2} bytes, or about 2 EiB. | 47 | enforced by the data types is @math{2^61 - 2} bytes, or about 2 EiB. |
| 48 | For most 32-bit machines, the maximum is @math{2^31 - 1} bytes, or about 2 GiB. | ||
| 48 | For some older machines, the maximum is @math{2^29 - 2} bytes, or | 49 | For some older machines, the maximum is @math{2^29 - 2} bytes, or |
| 49 | about 512 MiB. Buffer sizes are also limited by the size of Emacs's | 50 | about 512 MiB. Buffer sizes are also limited by the size of Emacs's |
| 50 | virtual memory. | 51 | virtual memory. |