diff options
| author | Glenn Morris | 2012-05-02 21:41:54 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-05-02 21:41:54 -0400 |
| commit | 0244c17ae63341234b50f81955fbf702fc46ea1a (patch) | |
| tree | 7e1a447d935e5865c22390b2ea1b3fd9ff07c0e0 /doc | |
| parent | 187c4f85ade8364f210546d789ec953f1e54af90 (diff) | |
| download | emacs-0244c17ae63341234b50f81955fbf702fc46ea1a.tar.gz emacs-0244c17ae63341234b50f81955fbf702fc46ea1a.zip | |
Tweak page breaks in doc/emacs/buffers.texi
* doc/emacs/buffers.texi (Buffers, Kill Buffer, Several Buffers)
(Indirect Buffers): Tweak line- and page-breaks.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/emacs/buffers.texi | 21 |
2 files changed, 13 insertions, 11 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index edc89a02f34..f8c9c79cc81 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-05-03 Glenn Morris <rgm@gnu.org> | 1 | 2012-05-03 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * buffers.texi (Buffers, Kill Buffer, Several Buffers) | ||
| 4 | (Indirect Buffers): Tweak line- and page-breaks. | ||
| 5 | |||
| 3 | * fixit.texi (Fixit, Undo): Reword to improve page-breaks. | 6 | * fixit.texi (Fixit, Undo): Reword to improve page-breaks. |
| 4 | 7 | ||
| 5 | 2012-05-01 Glenn Morris <rgm@gnu.org> | 8 | 2012-05-01 Glenn Morris <rgm@gnu.org> |
diff --git a/doc/emacs/buffers.texi b/doc/emacs/buffers.texi index 90d5084e3d9..5dd95cc2a6f 100644 --- a/doc/emacs/buffers.texi +++ b/doc/emacs/buffers.texi | |||
| @@ -46,7 +46,7 @@ This is because Emacs tracks buffer positions using that data type. | |||
| 46 | For typical 64-bit machines, this maximum buffer size is @math{2^61 - | 46 | For typical 64-bit machines, this maximum buffer size is @math{2^61 - |
| 47 | 2} bytes, or about 2 EiB. For typical 32-bit machines, the maximum is | 47 | 2} bytes, or about 2 EiB. For typical 32-bit machines, the maximum is |
| 48 | usually @math{2^29 - 2} bytes, or about 512 MiB. Buffer sizes are | 48 | usually @math{2^29 - 2} bytes, or about 512 MiB. Buffer sizes are |
| 49 | also limited by the amount of memory present in the system. | 49 | also limited by the amount of memory in the system. |
| 50 | 50 | ||
| 51 | @menu | 51 | @menu |
| 52 | * Select Buffer:: Creating a new buffer or reselecting an old one. | 52 | * Select Buffer:: Creating a new buffer or reselecting an old one. |
| @@ -326,8 +326,8 @@ for a mere hour. | |||
| 326 | @cindex Midnight mode | 326 | @cindex Midnight mode |
| 327 | @vindex midnight-mode | 327 | @vindex midnight-mode |
| 328 | @vindex midnight-hook | 328 | @vindex midnight-hook |
| 329 | You can also have this buffer purging done for you, every day at | 329 | You can also have this buffer purging done for you, once a day, |
| 330 | midnight, by enabling Midnight mode. Midnight mode operates each day | 330 | by enabling Midnight mode. Midnight mode operates each day |
| 331 | at midnight; at that time, it runs @code{clean-buffer-list}, or | 331 | at midnight; at that time, it runs @code{clean-buffer-list}, or |
| 332 | whichever functions you have placed in the normal hook | 332 | whichever functions you have placed in the normal hook |
| 333 | @code{midnight-hook} (@pxref{Hooks}). To enable Midnight mode, use | 333 | @code{midnight-hook} (@pxref{Hooks}). To enable Midnight mode, use |
| @@ -361,7 +361,7 @@ the buffer menu in another window, and selects that window. | |||
| 361 | 361 | ||
| 362 | The buffer menu is a read-only buffer, and can be changed only | 362 | The buffer menu is a read-only buffer, and can be changed only |
| 363 | through the special commands described in this section. The usual | 363 | through the special commands described in this section. The usual |
| 364 | Emacs cursor motion commands can be used in this buffer. The | 364 | cursor motion commands can be used in this buffer. The |
| 365 | following commands apply to the buffer described on the current line: | 365 | following commands apply to the buffer described on the current line: |
| 366 | 366 | ||
| 367 | @table @kbd | 367 | @table @kbd |
| @@ -476,13 +476,13 @@ Auto Revert mode applies to the @file{*Buffer List*} buffer only if | |||
| 476 | 476 | ||
| 477 | An @dfn{indirect buffer} shares the text of some other buffer, which | 477 | An @dfn{indirect buffer} shares the text of some other buffer, which |
| 478 | is called the @dfn{base buffer} of the indirect buffer. In some ways it | 478 | is called the @dfn{base buffer} of the indirect buffer. In some ways it |
| 479 | is the analogue, for buffers, of a symbolic link between files. | 479 | is a buffer analogue of a symbolic link between files. |
| 480 | 480 | ||
| 481 | @table @kbd | 481 | @table @kbd |
| 482 | @findex make-indirect-buffer | 482 | @findex make-indirect-buffer |
| 483 | @item M-x make-indirect-buffer @key{RET} @var{base-buffer} @key{RET} @var{indirect-name} @key{RET} | 483 | @item M-x make-indirect-buffer @key{RET} @var{base-buffer} @key{RET} @var{indirect-name} @key{RET} |
| 484 | Create an indirect buffer named @var{indirect-name} whose base buffer | 484 | Create an indirect buffer named @var{indirect-name} with base buffer |
| 485 | is @var{base-buffer}. | 485 | @var{base-buffer}. |
| 486 | @findex clone-indirect-buffer | 486 | @findex clone-indirect-buffer |
| 487 | @item M-x clone-indirect-buffer @key{RET} | 487 | @item M-x clone-indirect-buffer @key{RET} |
| 488 | Create an indirect buffer that is a twin copy of the current buffer. | 488 | Create an indirect buffer that is a twin copy of the current buffer. |
| @@ -520,10 +520,9 @@ buffer in another window. These functions run the hook | |||
| 520 | @code{clone-indirect-buffer-hook} after creating the indirect buffer. | 520 | @code{clone-indirect-buffer-hook} after creating the indirect buffer. |
| 521 | 521 | ||
| 522 | The more general way to make an indirect buffer is with the command | 522 | The more general way to make an indirect buffer is with the command |
| 523 | @kbd{M-x make-indirect-buffer}. It creates an indirect buffer from | 523 | @kbd{M-x make-indirect-buffer}. It creates an indirect buffer |
| 524 | buffer @var{base-buffer}, under the name @var{indirect-name}. It | 524 | named @var{indirect-name} from a buffer @var{base-buffer}, prompting for |
| 525 | prompts for both @var{base-buffer} and @var{indirect-name} using the | 525 | both using the minibuffer. |
| 526 | minibuffer. | ||
| 527 | 526 | ||
| 528 | @node Buffer Convenience | 527 | @node Buffer Convenience |
| 529 | @section Convenience Features and Customization of Buffer Handling | 528 | @section Convenience Features and Customization of Buffer Handling |