diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index 0b2036395da..c70e3219eac 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -522,7 +522,10 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0, | |||
| 522 | 522 | ||
| 523 | DEFUN ("car", Fcar, Scar, 1, 1, 0, | 523 | DEFUN ("car", Fcar, Scar, 1, 1, 0, |
| 524 | doc: /* Return the car of LIST. If arg is nil, return nil. | 524 | doc: /* Return the car of LIST. If arg is nil, return nil. |
| 525 | Error if arg is not nil and not a cons cell. See also `car-safe'. */) | 525 | Error if arg is not nil and not a cons cell. See also `car-safe'. |
| 526 | |||
| 527 | See Info node `(elisp)Cons Cells' for a discussion of related basic | ||
| 528 | Lisp concepts such as car, cdr, cons cell and list. */) | ||
| 526 | (list) | 529 | (list) |
| 527 | register Lisp_Object list; | 530 | register Lisp_Object list; |
| 528 | { | 531 | { |
| @@ -550,7 +553,10 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, | |||
| 550 | 553 | ||
| 551 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | 554 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, |
| 552 | doc: /* Return the cdr of LIST. If arg is nil, return nil. | 555 | doc: /* Return the cdr of LIST. If arg is nil, return nil. |
| 553 | Error if arg is not nil and not a cons cell. See also `cdr-safe'. */) | 556 | Error if arg is not nil and not a cons cell. See also `cdr-safe'. |
| 557 | |||
| 558 | See Info node `(elisp)Cons Cells' for a discussion of related basic | ||
| 559 | Lisp concepts such as cdr, car, cons cell and list. */) | ||
| 554 | (list) | 560 | (list) |
| 555 | register Lisp_Object list; | 561 | register Lisp_Object list; |
| 556 | { | 562 | { |