Mercurial > hg > xemacs-beta
diff src/fns.c @ 201:eb5470882647 r20-3b27
Import from CVS: tag r20-3b27
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:01:22 +0200 |
parents | a2f645c6b9f8 |
children | e45d5e7c476e |
line wrap: on
line diff
--- a/src/fns.c Mon Aug 13 10:00:35 2007 +0200 +++ b/src/fns.c Mon Aug 13 10:01:22 2007 +0200 @@ -460,6 +460,7 @@ The result is a list whose elements are the elements of all the arguments. Each argument may be a list, vector, bit vector, or string. The last argument is not copied, just used as the tail of the new list. +Also see: `nconc'. */ (int nargs, Lisp_Object *args)) { @@ -1351,6 +1352,7 @@ If the first member of LIST is ELT, there is no way to remove it by side effect; therefore, write `(setq foo (delete element foo))' to be sure of changing the value of `foo'. +Also see: `remove'. */ (elt, list)) { @@ -1721,6 +1723,7 @@ DEFUN ("nreverse", Fnreverse, 1, 1, 0, /* Reverse LIST by modifying cdr pointers. Returns the beginning of the reversed list. +Also see: `reverse'. */ (list)) { @@ -3097,6 +3100,7 @@ DEFUN ("nconc", Fnconc, 0, MANY, 0, /* Concatenate any number of lists by altering them. Only the last argument is not altered, and need not be a list. +Also see: `append'. */ (int nargs, Lisp_Object *args)) {