diff options
| author | Eli Zaretskii | 2021-07-14 18:54:11 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-07-14 18:54:11 +0300 |
| commit | 7ac411ae2ce91572a2bdb8eaa1ee6ceccf162e35 (patch) | |
| tree | 8a9e5b637c64bd362cdb7b732eeb48b12be8faf3 /src/data.c | |
| parent | 0d9e1826f7420cd49ca1162e56950ea7f8b4d449 (diff) | |
| download | emacs-7ac411ae2ce91572a2bdb8eaa1ee6ceccf162e35.tar.gz emacs-7ac411ae2ce91572a2bdb8eaa1ee6ceccf162e35.zip | |
; * src/data.c (Fcar, Fcdr): Doc fix.
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 2706a2474e6..1c36dff51db 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -591,8 +591,8 @@ DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p, | |||
| 591 | /* Extract and set components of lists. */ | 591 | /* Extract and set components of lists. */ |
| 592 | 592 | ||
| 593 | DEFUN ("car", Fcar, Scar, 1, 1, 0, | 593 | DEFUN ("car", Fcar, Scar, 1, 1, 0, |
| 594 | doc: /* Return the car of LIST. If arg is nil, return nil. | 594 | doc: /* Return the car of LIST. If LIST is nil, return nil. |
| 595 | Error if arg is not nil and not a cons cell. See also `car-safe'. | 595 | Error if LIST is not nil and not a cons cell. See also `car-safe'. |
| 596 | 596 | ||
| 597 | See Info node `(elisp)Cons Cells' for a discussion of related basic | 597 | See Info node `(elisp)Cons Cells' for a discussion of related basic |
| 598 | Lisp concepts such as car, cdr, cons cell and list. */) | 598 | Lisp concepts such as car, cdr, cons cell and list. */) |
| @@ -609,8 +609,8 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, | |||
| 609 | } | 609 | } |
| 610 | 610 | ||
| 611 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | 611 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, |
| 612 | doc: /* Return the cdr of LIST. If arg is nil, return nil. | 612 | doc: /* Return the cdr of LIST. If LIST is nil, return nil. |
| 613 | Error if arg is not nil and not a cons cell. See also `cdr-safe'. | 613 | Error if LIST is not nil and not a cons cell. See also `cdr-safe'. |
| 614 | 614 | ||
| 615 | See Info node `(elisp)Cons Cells' for a discussion of related basic | 615 | See Info node `(elisp)Cons Cells' for a discussion of related basic |
| 616 | Lisp concepts such as cdr, car, cons cell and list. */) | 616 | Lisp concepts such as cdr, car, cons cell and list. */) |