aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2012-06-28 23:28:37 -0700
committerGlenn Morris2012-06-28 23:28:37 -0700
commitc8d3a25c0981020e1b8aa3bf96a4a0059be82431 (patch)
tree46a76faa5df111a6bea439330ea26bea1cc85585 /doc
parent5437effdb836355436f5f986e46baa6a41ec0966 (diff)
parent3d8b9024adf6136edd3f7b7edf70a88b6ab8a61b (diff)
downloademacs-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/ChangeLog8
-rw-r--r--doc/emacs/fixit.texi8
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 @@
12012-06-29 Glenn Morris <rgm@gnu.org>
2
3 * fixit.texi (Undo): Grammar fixes. (Bug#11779)
4
52012-06-29 Michael Witten <mfwitten@gmail.com> (tiny change)
6
7 * fixit.texi (Undo): Fix typo. (Bug#11775)
8
12012-06-27 Glenn Morris <rgm@gnu.org> 92012-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.
36Each buffer records changes individually, and the undo command always 36Each buffer records changes individually, and the undo command always
37applies to the current buffer. You can undo all the changes in a 37applies to the current buffer. You can undo all the changes in a
38buffer for as far as back its records go. Usually, each editing 38buffer for as far back as the buffer's records go. Usually, each editing
39command makes a separate entry in the undo records, but some commands 39command makes a separate entry in the undo records, but some commands
40such as @code{query-replace} divide their changes into multiple 40such as @code{query-replace} divide their changes into multiple
41entries for flexibility in undoing. Consecutive character insertion 41entries 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
113the oldest undo records from time to time (during @dfn{garbage 113the oldest records from time to time (during @dfn{garbage
114collection}). You can specify how much undo records to keep by 114collection}). You can specify how much undo information to keep by
115setting the variables @code{undo-limit}, @code{undo-strong-limit}, and 115setting 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