diff options
| -rw-r--r-- | lispref/text.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lispref/text.texi b/lispref/text.texi index d506341f0d5..c9f1a83a74c 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -1202,7 +1202,9 @@ value for @code{kill-ring-max} is 60. | |||
| 1202 | Most buffers have an @dfn{undo list}, which records all changes made | 1202 | Most buffers have an @dfn{undo list}, which records all changes made |
| 1203 | to the buffer's text so that they can be undone. (The buffers that | 1203 | to the buffer's text so that they can be undone. (The buffers that |
| 1204 | don't have one are usually special-purpose buffers for which Emacs | 1204 | don't have one are usually special-purpose buffers for which Emacs |
| 1205 | assumes that undoing is not useful.) All the primitives that modify the | 1205 | assumes that undoing is not useful. In particular, any buffer whose |
| 1206 | name begins with a space has its undo recording off by default, | ||
| 1207 | see @ref{Buffer Names}.) All the primitives that modify the | ||
| 1206 | text in the buffer automatically add elements to the front of the undo | 1208 | text in the buffer automatically add elements to the front of the undo |
| 1207 | list, which is in the variable @code{buffer-undo-list}. | 1209 | list, which is in the variable @code{buffer-undo-list}. |
| 1208 | 1210 | ||