aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/data.c b/src/data.c
index 78e52d8d51c..472aff990b1 100644
--- a/src/data.c
+++ b/src/data.c
@@ -274,7 +274,8 @@ DEFUN ("atom", Fatom, Satom, 1, 1, 0,
274} 274}
275 275
276DEFUN ("listp", Flistp, Slistp, 1, 1, 0, 276DEFUN ("listp", Flistp, Slistp, 1, 1, 0,
277 doc: /* Return t if OBJECT is a list. This includes nil. */) 277 doc: /* Return t if OBJECT is a list, that is, a cons cell or nil.
278Otherwise, return nil. */)
278 (object) 279 (object)
279 Lisp_Object object; 280 Lisp_Object object;
280{ 281{
@@ -521,7 +522,10 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
521 522
522DEFUN ("car", Fcar, Scar, 1, 1, 0, 523DEFUN ("car", Fcar, Scar, 1, 1, 0,
523 doc: /* Return the car of LIST. If arg is nil, return nil. 524 doc: /* Return the car of LIST. If arg is nil, return nil.
524Error if arg is not nil and not a cons cell. See also `car-safe'. */) 525Error if arg is not nil and not a cons cell. See also `car-safe'.
526
527See Info node `(elisp)Cons Cells' for a discussion of related basic
528Lisp concepts such as car, cdr, cons cell and list. */)
525 (list) 529 (list)
526 register Lisp_Object list; 530 register Lisp_Object list;
527{ 531{
@@ -549,7 +553,10 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
549 553
550DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 554DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
551 doc: /* Return the cdr of LIST. If arg is nil, return nil. 555 doc: /* Return the cdr of LIST. If arg is nil, return nil.
552Error if arg is not nil and not a cons cell. See also `cdr-safe'. */) 556Error if arg is not nil and not a cons cell. See also `cdr-safe'.
557
558See Info node `(elisp)Cons Cells' for a discussion of related basic
559Lisp concepts such as cdr, car, cons cell and list. */)
553 (list) 560 (list)
554 register Lisp_Object list; 561 register Lisp_Object list;
555{ 562{