diff options
| author | Eli Zaretskii | 2021-04-13 15:30:02 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-04-13 15:30:02 +0300 |
| commit | eedad01b4bd8db2e8af087d8810c99c8f00a86af (patch) | |
| tree | 078fdfd466bed7336a8ec5929ce310c33f224877 | |
| parent | 24d214652e513ebcf8ebe5eeef8375b5a1ed2859 (diff) | |
| download | emacs-eedad01b4bd8db2e8af087d8810c99c8f00a86af.tar.gz emacs-eedad01b4bd8db2e8af087d8810c99c8f00a86af.zip | |
Fix typos in manuals
* doc/misc/eshell.texi (Completion):
* doc/lispref/objects.texi (Mutability): Fix typos. (Bug#47738)
| -rw-r--r-- | doc/lispref/objects.texi | 2 | ||||
| -rw-r--r-- | doc/misc/eshell.texi | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index 99949815edd..51f7985825d 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi | |||
| @@ -2407,7 +2407,7 @@ that is evaluated. For example: | |||
| 2407 | 2407 | ||
| 2408 | @noindent | 2408 | @noindent |
| 2409 | Although the list @code{(0.5)} was mutable when it was created, it should not | 2409 | Although the list @code{(0.5)} was mutable when it was created, it should not |
| 2410 | have been changed via @code{setcar} because it given to @code{eval}. The | 2410 | have been changed via @code{setcar} because it was given to @code{eval}. The |
| 2411 | reverse does not occur: an object that should not be changed never | 2411 | reverse does not occur: an object that should not be changed never |
| 2412 | becomes mutable afterwards. | 2412 | becomes mutable afterwards. |
| 2413 | 2413 | ||
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index 0d3d3891501..66f54137505 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi | |||
| @@ -512,8 +512,8 @@ below the @code{completion-cycle-threshold}), press @kbd{M-?}. | |||
| 512 | @subsection pcomplete | 512 | @subsection pcomplete |
| 513 | Pcomplete, short for programmable completion, is the completion | 513 | Pcomplete, short for programmable completion, is the completion |
| 514 | library originally written for Eshell, but usable for command | 514 | library originally written for Eshell, but usable for command |
| 515 | completion@footnote{Command completion as opposed to code completion, | 515 | completion@footnote{Command completion, as opposed to code completion, |
| 516 | which is a beyond the scope of pcomplete.} in other modes. | 516 | which is beyond the scope of pcomplete.} in other modes. |
| 517 | 517 | ||
| 518 | Completions are defined as functions (with @code{defun}) named | 518 | Completions are defined as functions (with @code{defun}) named |
| 519 | @code{pcomplete/COMMAND}, where @code{COMMAND} is the name of the | 519 | @code{pcomplete/COMMAND}, where @code{COMMAND} is the name of the |