aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorMiles Bader2006-02-01 10:07:17 +0000
committerMiles Bader2006-02-01 10:07:17 +0000
commit06eb776d8e80eaed0f6b04349dbd4df9292131d9 (patch)
treef8f308fcd75d052e99c7e176efc100c8488fda7f /src/data.c
parentdb856169c248b363fe3dc5ee4e8b1dd18c3a05a2 (diff)
parent46e8fe3d6ce114ae3ecd41f7add9ed7f0c13f4b6 (diff)
downloademacs-06eb776d8e80eaed0f6b04349dbd4df9292131d9.tar.gz
emacs-06eb776d8e80eaed0f6b04349dbd4df9292131d9.zip
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-9
Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 16-33) - Update from CVS - Install ERC. - Fix ERC compiler warnings. - Use utf-8 encoding in ERC ChangeLogs. - Merge ERC-related Viper hacks into Viper. - Merge from erc--main--0 - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 8-13) - Merge from emacs--devo--0 - Update from CVS
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{