diff options
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. */) |