diff options
| author | Eli Zaretskii | 2001-05-18 10:39:04 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-05-18 10:39:04 +0000 |
| commit | dc53c88bfd6794a353ddd7ecac8ff91707d7924a (patch) | |
| tree | d1c00328f4d28431fed6477f237b99f7928726c8 | |
| parent | 9f2848e49bb43ae1b2b86407c14ade7787760478 (diff) | |
| download | emacs-dc53c88bfd6794a353ddd7ecac8ff91707d7924a.tar.gz emacs-dc53c88bfd6794a353ddd7ecac8ff91707d7924a.zip | |
(Buffers): Document the maximum buffer size.
| -rw-r--r-- | man/buffers.texi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/man/buffers.texi b/man/buffers.texi index 22b05a39349..a6ead2a87b9 100644 --- a/man/buffers.texi +++ b/man/buffers.texi | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | @c This is part of the Emacs manual. | 1 | @c This is part of the Emacs manual. |
| 2 | @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000 | 2 | @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000, 2001 |
| 3 | @c Free Software Foundation, Inc. | 3 | @c Free Software Foundation, Inc. |
| 4 | @c See file emacs.texi for copying conditions. | 4 | @c See file emacs.texi for copying conditions. |
| 5 | @node Buffers, Windows, Files, Top | 5 | @node Buffers, Windows, Files, Top |
| @@ -40,6 +40,12 @@ modified, and what major mode and minor modes are in effect in it | |||
| 40 | particular buffer, meaning its value in that buffer can be different from | 40 | particular buffer, meaning its value in that buffer can be different from |
| 41 | the value in other buffers. @xref{Locals}. | 41 | the value in other buffers. @xref{Locals}. |
| 42 | 42 | ||
| 43 | @cindex buffer size, maximum | ||
| 44 | A buffer's size cannot be larger than some maximum, which is defined | ||
| 45 | by largest buffer position representable by the @dfn{Emacs integer} data | ||
| 46 | type. This is because Emacs tracks buffer positions using that data | ||
| 47 | type. For 32-bit machines, the largest buffer size is 128 megabytes. | ||
| 48 | |||
| 43 | @menu | 49 | @menu |
| 44 | * Select Buffer:: Creating a new buffer or reselecting an old one. | 50 | * Select Buffer:: Creating a new buffer or reselecting an old one. |
| 45 | * List Buffers:: Getting a list of buffers that exist. | 51 | * List Buffers:: Getting a list of buffers that exist. |