diff options
| author | Glenn Morris | 2012-06-28 23:28:37 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-06-28 23:28:37 -0700 |
| commit | c8d3a25c0981020e1b8aa3bf96a4a0059be82431 (patch) | |
| tree | 46a76faa5df111a6bea439330ea26bea1cc85585 /doc | |
| parent | 5437effdb836355436f5f986e46baa6a41ec0966 (diff) | |
| parent | 3d8b9024adf6136edd3f7b7edf70a88b6ab8a61b (diff) | |
| download | emacs-c8d3a25c0981020e1b8aa3bf96a4a0059be82431.tar.gz emacs-c8d3a25c0981020e1b8aa3bf96a4a0059be82431.zip | |
Merge from emacs-24; up to 2012-04-30T11:57:47Z!sdl.web@gmail.com
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 8 | ||||
| -rw-r--r-- | doc/emacs/fixit.texi | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index f7feb62e0f1..117bbfc21c8 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2012-06-29 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * fixit.texi (Undo): Grammar fixes. (Bug#11779) | ||
| 4 | |||
| 5 | 2012-06-29 Michael Witten <mfwitten@gmail.com> (tiny change) | ||
| 6 | |||
| 7 | * fixit.texi (Undo): Fix typo. (Bug#11775) | ||
| 8 | |||
| 1 | 2012-06-27 Glenn Morris <rgm@gnu.org> | 9 | 2012-06-27 Glenn Morris <rgm@gnu.org> |
| 2 | 10 | ||
| 3 | * ack.texi (Acknowledgments): Tiny update. | 11 | * ack.texi (Acknowledgments): Tiny update. |
diff --git a/doc/emacs/fixit.texi b/doc/emacs/fixit.texi index 8f75c5e151c..b9199eba553 100644 --- a/doc/emacs/fixit.texi +++ b/doc/emacs/fixit.texi | |||
| @@ -35,7 +35,7 @@ These were described earlier in this manual. @xref{Erasing}. | |||
| 35 | The @dfn{undo} command reverses recent changes in the buffer's text. | 35 | The @dfn{undo} command reverses recent changes in the buffer's text. |
| 36 | Each buffer records changes individually, and the undo command always | 36 | Each buffer records changes individually, and the undo command always |
| 37 | applies to the current buffer. You can undo all the changes in a | 37 | applies to the current buffer. You can undo all the changes in a |
| 38 | buffer for as far as back its records go. Usually, each editing | 38 | buffer for as far back as the buffer's records go. Usually, each editing |
| 39 | command makes a separate entry in the undo records, but some commands | 39 | command makes a separate entry in the undo records, but some commands |
| 40 | such as @code{query-replace} divide their changes into multiple | 40 | such as @code{query-replace} divide their changes into multiple |
| 41 | entries for flexibility in undoing. Consecutive character insertion | 41 | entries for flexibility in undoing. Consecutive character insertion |
| @@ -109,9 +109,9 @@ Emacs to hold text that users don't normally look at or edit. | |||
| 109 | @vindex undo-strong-limit | 109 | @vindex undo-strong-limit |
| 110 | @vindex undo-outer-limit | 110 | @vindex undo-outer-limit |
| 111 | @cindex undo limit | 111 | @cindex undo limit |
| 112 | When the undo records for a buffer becomes too large, Emacs discards | 112 | When the undo information for a buffer becomes too large, Emacs discards |
| 113 | the oldest undo records from time to time (during @dfn{garbage | 113 | the oldest records from time to time (during @dfn{garbage |
| 114 | collection}). You can specify how much undo records to keep by | 114 | collection}). You can specify how much undo information to keep by |
| 115 | setting the variables @code{undo-limit}, @code{undo-strong-limit}, and | 115 | setting the variables @code{undo-limit}, @code{undo-strong-limit}, and |
| 116 | @code{undo-outer-limit}. Their values are expressed in bytes. | 116 | @code{undo-outer-limit}. Their values are expressed in bytes. |
| 117 | 117 | ||