diff options
| author | Juri Linkov | 2020-01-21 00:50:15 +0200 |
|---|---|---|
| committer | Juri Linkov | 2020-01-21 00:50:15 +0200 |
| commit | 7dd065fc7bd561b09f79142974b8ada052dfa7d1 (patch) | |
| tree | 02ee47ffa34c8d2175188b43ef84c87724d190e9 | |
| parent | 06166aa7192d3fc01e5aa242936daf5e88adb904 (diff) | |
| download | emacs-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.texi | 4 | ||||
| -rw-r--r-- | doc/emacs/fixit.texi | 6 |
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}. | |||
| 720 | Dired automatically changes the visited file name of buffers associated | 720 | Dired automatically changes the visited file name of buffers associated |
| 721 | with renamed files so that they refer to the new names. | 721 | with renamed files so that they refer to the new names. |
| 722 | 722 | ||
| 723 | @vindex dired-vc-rename | 723 | @vindex dired-vc-rename-file |
| 724 | If the value of the variable @code{dired-vc-rename} is non-@code{nil}, | 724 | If the value of the variable @code{dired-vc-rename-file} is non-@code{nil}, |
| 725 | files are renamed using the commands of the underlying VCS, via | 725 | files 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 |
| 123 | data for enough commands to reach this size, and perhaps exceed it, | 123 | data for enough commands to reach this size, and perhaps exceed it, |
| 124 | but does not keep data for any earlier commands beyond that. Its | 124 | but does not keep data for any earlier commands beyond that. Its |
| 125 | default value is 80000. The variable @code{undo-strong-limit} sets a | 125 | default value is 160000. The variable @code{undo-strong-limit} sets a |
| 126 | stricter limit: any previous command (though not the most recent one) | 126 | stricter limit: any previous command (though not the most recent one) |
| 127 | that pushes the size past this amount is forgotten. The default value | 127 | that pushes the size past this amount is forgotten. The default value |
| 128 | of @code{undo-strong-limit} is 120000. | 128 | of @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 |
| 131 | is never discarded unless it gets bigger than @code{undo-outer-limit} | 131 | is 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 |
| 133 | warns you about it. This is the only situation in which you cannot | 133 | warns you about it. This is the only situation in which you cannot |
| 134 | undo the last command. If this happens, you can increase the value of | 134 | undo 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 |