aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index b269fc3d3c3..7bc04592c57 100644
--- a/src/data.c
+++ b/src/data.c
@@ -463,7 +463,7 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
463/* Extract and set components of lists */ 463/* Extract and set components of lists */
464 464
465DEFUN ("car", Fcar, Scar, 1, 1, 0, 465DEFUN ("car", Fcar, Scar, 1, 1, 0,
466 doc: /* Return the car (first element) of LIST. If arg is nil, return nil. 466 doc: /* Return the car of LIST. If arg is nil, return nil.
467Error if arg is not nil and not a cons cell. See also `car-safe'. 467Error if arg is not nil and not a cons cell. See also `car-safe'.
468 468
469See Info node `(elisp)Cons Cells' for a discussion of related basic 469See Info node `(elisp)Cons Cells' for a discussion of related basic
@@ -481,7 +481,7 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
481} 481}
482 482
483DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 483DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
484 doc: /* Return the cdr (rest) of LIST. If arg is nil, return nil. 484 doc: /* Return the cdr of LIST. If arg is nil, return nil.
485Error if arg is not nil and not a cons cell. See also `cdr-safe'. 485Error if arg is not nil and not a cons cell. See also `cdr-safe'.
486 486
487See Info node `(elisp)Cons Cells' for a discussion of related basic 487See Info node `(elisp)Cons Cells' for a discussion of related basic