diff options
| author | Simon Marshall | 1995-04-06 12:18:08 +0000 |
|---|---|---|
| committer | Simon Marshall | 1995-04-06 12:18:08 +0000 |
| commit | e1960a184acd8fd5e63066a92af72e8bae88a799 (patch) | |
| tree | f01604c19206ff90bc8da97f9e6989b7970d1eb3 /src | |
| parent | 7af04c89d44644d8ba69e2b4c470ad29f0bf60b5 (diff) | |
| download | emacs-e1960a184acd8fd5e63066a92af72e8bae88a799.tar.gz emacs-e1960a184acd8fd5e63066a92af72e8bae88a799.zip | |
Doc fixes to match declared args.
Diffstat (limited to 'src')
| -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 41f74cb98e1..32eac49acd9 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -445,7 +445,7 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0, | |||
| 445 | /* Extract and set components of lists */ | 445 | /* Extract and set components of lists */ |
| 446 | 446 | ||
| 447 | DEFUN ("car", Fcar, Scar, 1, 1, 0, | 447 | DEFUN ("car", Fcar, Scar, 1, 1, 0, |
| 448 | "Return the car of CONSCELL. If arg is nil, return nil.\n\ | 448 | "Return the car of LIST. If arg is nil, return nil.\n\ |
| 449 | Error if arg is not nil and not a cons cell. See also `car-safe'.") | 449 | Error if arg is not nil and not a cons cell. See also `car-safe'.") |
| 450 | (list) | 450 | (list) |
| 451 | register Lisp_Object list; | 451 | register Lisp_Object list; |
| @@ -473,7 +473,7 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, | |||
| 473 | } | 473 | } |
| 474 | 474 | ||
| 475 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, | 475 | DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, |
| 476 | "Return the cdr of CONSCELL. If arg is nil, return nil.\n\ | 476 | "Return the cdr of LIST. If arg is nil, return nil.\n\ |
| 477 | Error if arg is not nil and not a cons cell. See also `cdr-safe'.") | 477 | Error if arg is not nil and not a cons cell. See also `cdr-safe'.") |
| 478 | 478 | ||
| 479 | (list) | 479 | (list) |
| @@ -502,7 +502,7 @@ DEFUN ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0, | |||
| 502 | } | 502 | } |
| 503 | 503 | ||
| 504 | DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0, | 504 | DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0, |
| 505 | "Set the car of CONSCELL to be NEWCAR. Returns NEWCAR.") | 505 | "Set the car of CELL to be NEWCAR. Returns NEWCAR.") |
| 506 | (cell, newcar) | 506 | (cell, newcar) |
| 507 | register Lisp_Object cell, newcar; | 507 | register Lisp_Object cell, newcar; |
| 508 | { | 508 | { |
| @@ -515,7 +515,7 @@ DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0, | |||
| 515 | } | 515 | } |
| 516 | 516 | ||
| 517 | DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0, | 517 | DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0, |
| 518 | "Set the cdr of CONSCELL to be NEWCDR. Returns NEWCDR.") | 518 | "Set the cdr of CELL to be NEWCDR. Returns NEWCDR.") |
| 519 | (cell, newcdr) | 519 | (cell, newcdr) |
| 520 | register Lisp_Object cell, newcdr; | 520 | register Lisp_Object cell, newcdr; |
| 521 | { | 521 | { |