aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c8
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
447DEFUN ("car", Fcar, Scar, 1, 1, 0, 447DEFUN ("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\
449Error if arg is not nil and not a cons cell. See also `car-safe'.") 449Error 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
475DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 475DEFUN ("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\
477Error if arg is not nil and not a cons cell. See also `cdr-safe'.") 477Error 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
504DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0, 504DEFUN ("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
517DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0, 517DEFUN ("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{