aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2020-01-21 00:50:15 +0200
committerJuri Linkov2020-01-21 00:50:15 +0200
commit7dd065fc7bd561b09f79142974b8ada052dfa7d1 (patch)
tree02ee47ffa34c8d2175188b43ef84c87724d190e9
parent06166aa7192d3fc01e5aa242936daf5e88adb904 (diff)
downloademacs-7dd065fc7bd561b09f79142974b8ada052dfa7d1.tar.gz
emacs-7dd065fc7bd561b09f79142974b8ada052dfa7d1.zip
Small fixes in documentation.
* doc/emacs/dired.texi (Operating on Files): Fix name of dired-vc-rename-file. * doc/emacs/fixit.texi (Undo): Update new values of undo limits doubled in bug#31104.
-rw-r--r--doc/emacs/dired.texi4
-rw-r--r--doc/emacs/fixit.texi6
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi
index 5a64425f271..fba4389094f 100644
--- a/doc/emacs/dired.texi
+++ b/doc/emacs/dired.texi
@@ -720,8 +720,8 @@ should create non-existent directories in @var{new}.
720Dired automatically changes the visited file name of buffers associated 720Dired automatically changes the visited file name of buffers associated
721with renamed files so that they refer to the new names. 721with renamed files so that they refer to the new names.
722 722
723@vindex dired-vc-rename 723@vindex dired-vc-rename-file
724If the value of the variable @code{dired-vc-rename} is non-@code{nil}, 724If the value of the variable @code{dired-vc-rename-file} is non-@code{nil},
725files are renamed using the commands of the underlying VCS, via 725files are renamed using the commands of the underlying VCS, via
726@code{vc-rename-file} (@pxref{VC Delete/Rename}). 726@code{vc-rename-file} (@pxref{VC Delete/Rename}).
727 727
diff --git a/doc/emacs/fixit.texi b/doc/emacs/fixit.texi
index 171a9bc06fc..3665faf3a8f 100644
--- a/doc/emacs/fixit.texi
+++ b/doc/emacs/fixit.texi
@@ -122,14 +122,14 @@ setting the variables @code{undo-limit}, @code{undo-strong-limit}, and
122 The variable @code{undo-limit} sets a soft limit: Emacs keeps undo 122 The variable @code{undo-limit} sets a soft limit: Emacs keeps undo
123data for enough commands to reach this size, and perhaps exceed it, 123data for enough commands to reach this size, and perhaps exceed it,
124but does not keep data for any earlier commands beyond that. Its 124but does not keep data for any earlier commands beyond that. Its
125default value is 80000. The variable @code{undo-strong-limit} sets a 125default value is 160000. The variable @code{undo-strong-limit} sets a
126stricter limit: any previous command (though not the most recent one) 126stricter limit: any previous command (though not the most recent one)
127that pushes the size past this amount is forgotten. The default value 127that pushes the size past this amount is forgotten. The default value
128of @code{undo-strong-limit} is 120000. 128of @code{undo-strong-limit} is 240000.
129 129
130 Regardless of the values of those variables, the most recent change 130 Regardless of the values of those variables, the most recent change
131is never discarded unless it gets bigger than @code{undo-outer-limit} 131is never discarded unless it gets bigger than @code{undo-outer-limit}
132(normally 12,000,000). At that point, Emacs discards the undo data and 132(normally 24,000,000). At that point, Emacs discards the undo data and
133warns you about it. This is the only situation in which you cannot 133warns you about it. This is the only situation in which you cannot
134undo the last command. If this happens, you can increase the value of 134undo the last command. If this happens, you can increase the value of
135@code{undo-outer-limit} to make it even less likely to happen in the 135@code{undo-outer-limit} to make it even less likely to happen in the