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 059f31e514b..9adfafacaa5 100644
--- a/src/data.c
+++ b/src/data.c
@@ -581,8 +581,8 @@ DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p,
581/* Extract and set components of lists. */ 581/* Extract and set components of lists. */
582 582
583DEFUN ("car", Fcar, Scar, 1, 1, 0, 583DEFUN ("car", Fcar, Scar, 1, 1, 0,
584 doc: /* Return the car of LIST. If arg is nil, return nil. 584 doc: /* Return the car of LIST. If LIST is nil, return nil.
585Error if arg is not nil and not a cons cell. See also `car-safe'. 585Error if LIST is not nil and not a cons cell. See also `car-safe'.
586 586
587See Info node `(elisp)Cons Cells' for a discussion of related basic 587See Info node `(elisp)Cons Cells' for a discussion of related basic
588Lisp concepts such as car, cdr, cons cell and list. */) 588Lisp concepts such as car, cdr, cons cell and list. */)
@@ -599,8 +599,8 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
599} 599}
600 600
601DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 601DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
602 doc: /* Return the cdr of LIST. If arg is nil, return nil. 602 doc: /* Return the cdr of LIST. If LIST is nil, return nil.
603Error if arg is not nil and not a cons cell. See also `cdr-safe'. 603Error if LIST is not nil and not a cons cell. See also `cdr-safe'.
604 604
605See Info node `(elisp)Cons Cells' for a discussion of related basic 605See Info node `(elisp)Cons Cells' for a discussion of related basic
606Lisp concepts such as cdr, car, cons cell and list. */) 606Lisp concepts such as cdr, car, cons cell and list. */)