diff options
| author | Luc Teirlinck | 2006-01-28 23:16:35 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-01-28 23:16:35 +0000 |
| commit | 9701c742ad8556cf02e37d879926b77627187e0f (patch) | |
| tree | 90e5f48cf182682cd2325c6aaa626513fc5ba7bf /src | |
| parent | 6badf38c8a94976dfbc52c71e5e79853330983a3 (diff) | |
| download | emacs-9701c742ad8556cf02e37d879926b77627187e0f.tar.gz emacs-9701c742ad8556cf02e37d879926b77627187e0f.zip | |
(Fcar, Fcdr): Add links to Elisp manual to the docstrings.
Diffstat (limited to 'src')
| -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 75fa3a89086..dade1a0b1b7 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -521,7 +521,10 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0, | |||
| 521 | 521 | ||
| 522 | DEFUN ("car", Fcar, Scar, 1, 1, 0, | 522 | DEFUN ("car", Fcar, Scar, 1, 1, 0, |
| 523 | doc: /* Return the car of LIST. If arg is nil, return nil. | 523 | doc: /* Return the car of LIST. If arg is nil, return nil. |
| 524 | Error if arg is not nil and not a cons cell. See also `car-safe'. */) | 524 | Error if arg is not nil and not a cons cell. See also `car-safe'. |
| 525 | |||
| 526 | See Info node `(elisp)Cons Cells' for a discussion of basic Lisp | ||
| 527 | concepts such as car, cdr, cons cell and list. */) | ||
| 525 | (list) | 528 | (list) |
| 526 | register Lisp_Object list; | 529 | register Lisp_Object list; |
| 527 | { | 530 | { |
| @@ -549,7 +552,10 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, | |||
| 549 | 552 | ||
| 550 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | 553 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, |
| 551 | doc: /* Return the cdr of LIST. If arg is nil, return nil. | 554 | doc: /* Return the cdr of LIST. If arg is nil, return nil. |
| 552 | Error if arg is not nil and not a cons cell. See also `cdr-safe'. */) | 555 | Error if arg is not nil and not a cons cell. See also `cdr-safe'. |
| 556 | |||
| 557 | See Info node `(elisp)Cons Cells' for a discussion of basic Lisp | ||
| 558 | concepts such as cdr, car, cons cell and list. */) | ||
| 553 | (list) | 559 | (list) |
| 554 | register Lisp_Object list; | 560 | register Lisp_Object list; |
| 555 | { | 561 | { |