diff options
| author | Glenn Morris | 2021-07-16 07:51:35 -0700 |
|---|---|---|
| committer | Glenn Morris | 2021-07-16 07:51:35 -0700 |
| commit | 45cdc89986bb4ee60d7b64ee6ba0f717869aae5a (patch) | |
| tree | 57f7596bed494a2863d1e3a706258486f5f50feb /src/data.c | |
| parent | d8d9504c5a9f1b6d22eae131334b981c65881f0e (diff) | |
| parent | 7ac411ae2ce91572a2bdb8eaa1ee6ceccf162e35 (diff) | |
| download | emacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.tar.gz emacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.zip | |
Merge from origin/emacs-27
7ac411ae2c (origin/emacs-27) ; * src/data.c (Fcar, Fcdr): Doc fix.
0d9e1826f7 One more minor update of the Emacs manual for 19th printing
92616d30e0 ; Fix let-alist Texinfo markup
c13acf8e34 ; * doc/emacs/mule.texi (International Chars): Mention 'de...
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c index 059f31e514b..9adfafacaa5 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -581,8 +581,8 @@ DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p, | |||
| 581 | /* Extract and set components of lists. */ | 581 | /* Extract and set components of lists. */ |
| 582 | 582 | ||
| 583 | DEFUN ("car", Fcar, Scar, 1, 1, 0, | 583 | DEFUN ("car", Fcar, Scar, 1, 1, 0, |
| 584 | doc: /* Return the car of LIST. If arg is nil, return nil. | 584 | doc: /* Return the car of LIST. If LIST is nil, return nil. |
| 585 | Error if arg is not nil and not a cons cell. See also `car-safe'. | 585 | Error if LIST is not nil and not a cons cell. See also `car-safe'. |
| 586 | 586 | ||
| 587 | See Info node `(elisp)Cons Cells' for a discussion of related basic | 587 | See Info node `(elisp)Cons Cells' for a discussion of related basic |
| 588 | Lisp concepts such as car, cdr, cons cell and list. */) | 588 | Lisp concepts such as car, cdr, cons cell and list. */) |
| @@ -599,8 +599,8 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, | |||
| 599 | } | 599 | } |
| 600 | 600 | ||
| 601 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | 601 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, |
| 602 | doc: /* Return the cdr of LIST. If arg is nil, return nil. | 602 | doc: /* Return the cdr of LIST. If LIST is nil, return nil. |
| 603 | Error if arg is not nil and not a cons cell. See also `cdr-safe'. | 603 | Error if LIST is not nil and not a cons cell. See also `cdr-safe'. |
| 604 | 604 | ||
| 605 | See Info node `(elisp)Cons Cells' for a discussion of related basic | 605 | See Info node `(elisp)Cons Cells' for a discussion of related basic |
| 606 | Lisp concepts such as cdr, car, cons cell and list. */) | 606 | Lisp concepts such as cdr, car, cons cell and list. */) |