diff options
| author | Luc Teirlinck | 2006-01-29 02:19:33 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-01-29 02:19:33 +0000 |
| commit | da46c5bec76335d48b76723479173e52a4bdae7f (patch) | |
| tree | b680bd51085f4691d20d2704da74eee483125aa5 /src/data.c | |
| parent | 1f2907eea7545a983cbc73da5e629d42bb65a712 (diff) | |
| download | emacs-da46c5bec76335d48b76723479173e52a4bdae7f.tar.gz emacs-da46c5bec76335d48b76723479173e52a4bdae7f.zip | |
(Fcar, Fcdr): Doc fixes.
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 dade1a0b1b7..12062c53097 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -523,8 +523,8 @@ 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 | 525 | ||
| 526 | See Info node `(elisp)Cons Cells' for a discussion of basic Lisp | 526 | See Info node `(elisp)Cons Cells' for a discussion of related basic |
| 527 | concepts such as car, cdr, cons cell and list. */) | 527 | Lisp concepts such as car, cdr, cons cell and list. */) |
| 528 | (list) | 528 | (list) |
| 529 | register Lisp_Object list; | 529 | register Lisp_Object list; |
| 530 | { | 530 | { |
| @@ -554,8 +554,8 @@ DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | |||
| 554 | 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. |
| 555 | 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 | 556 | ||
| 557 | See Info node `(elisp)Cons Cells' for a discussion of basic Lisp | 557 | See Info node `(elisp)Cons Cells' for a discussion of related basic |
| 558 | concepts such as cdr, car, cons cell and list. */) | 558 | Lisp concepts such as cdr, car, cons cell and list. */) |
| 559 | (list) | 559 | (list) |
| 560 | register Lisp_Object list; | 560 | register Lisp_Object list; |
| 561 | { | 561 | { |