diff options
| author | Ville Skyttä | 2018-05-27 19:03:10 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2018-06-01 16:33:58 +0300 |
| commit | 6d2352594f4e4e17965834851547df3adaa6cd6f (patch) | |
| tree | ea82455f3e2f674c288fafbb2789eb3452feeb4c /doc/lispintro | |
| parent | e5471b2381e885d5d214bfa09ab0c35275fc6048 (diff) | |
| download | emacs-6d2352594f4e4e17965834851547df3adaa6cd6f.tar.gz emacs-6d2352594f4e4e17965834851547df3adaa6cd6f.zip | |
Fix typos in several manuals (Bug#31610)
Copyright-paperwork-exempt: yes
Diffstat (limited to 'doc/lispintro')
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 67df6f208fb..a256873ab1d 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -484,7 +484,7 @@ Narrowing and Widening | |||
| 484 | 484 | ||
| 485 | @code{car}, @code{cdr}, @code{cons}: Fundamental Functions | 485 | @code{car}, @code{cdr}, @code{cons}: Fundamental Functions |
| 486 | 486 | ||
| 487 | * Strange Names:: An historical aside: why the strange names? | 487 | * Strange Names:: A historical aside: why the strange names? |
| 488 | * car & cdr:: Functions for extracting part of a list. | 488 | * car & cdr:: Functions for extracting part of a list. |
| 489 | * cons:: Constructing a list. | 489 | * cons:: Constructing a list. |
| 490 | * nthcdr:: Calling @code{cdr} repeatedly. | 490 | * nthcdr:: Calling @code{cdr} repeatedly. |
| @@ -6797,7 +6797,7 @@ will see @code{cons} as well as two variants on @code{cdr}, | |||
| 6797 | namely, @code{setcdr} and @code{nthcdr}. (@xref{copy-region-as-kill}.) | 6797 | namely, @code{setcdr} and @code{nthcdr}. (@xref{copy-region-as-kill}.) |
| 6798 | 6798 | ||
| 6799 | @menu | 6799 | @menu |
| 6800 | * Strange Names:: An historical aside: why the strange names? | 6800 | * Strange Names:: A historical aside: why the strange names? |
| 6801 | * car & cdr:: Functions for extracting part of a list. | 6801 | * car & cdr:: Functions for extracting part of a list. |
| 6802 | * cons:: Constructing a list. | 6802 | * cons:: Constructing a list. |
| 6803 | * nthcdr:: Calling @code{cdr} repeatedly. | 6803 | * nthcdr:: Calling @code{cdr} repeatedly. |
| @@ -7678,7 +7678,7 @@ The first part of the code looks like this: | |||
| 7678 | @end smallexample | 7678 | @end smallexample |
| 7679 | 7679 | ||
| 7680 | @noindent | 7680 | @noindent |
| 7681 | @code{char-table-p} is an hitherto unseen function. It determines | 7681 | @code{char-table-p} is a hitherto unseen function. It determines |
| 7682 | whether its argument is a character table. When it is, it sets the | 7682 | whether its argument is a character table. When it is, it sets the |
| 7683 | character passed to @code{zap-to-char} to one of them, if that | 7683 | character passed to @code{zap-to-char} to one of them, if that |
| 7684 | character exists, or to the character itself. (This becomes important | 7684 | character exists, or to the character itself. (This becomes important |