aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2001-10-21 14:19:57 +0000
committerMiles Bader2001-10-21 14:19:57 +0000
commit4bf8e2a32e466eb90e672c1d684750afb0e88cb1 (patch)
treef5934c74356539212ed66c9d4915c0c7d3b01a0c /src
parent4bfbe194acebfb9a595a819bc3a6613e1e5430df (diff)
downloademacs-4bf8e2a32e466eb90e672c1d684750afb0e88cb1.tar.gz
emacs-4bf8e2a32e466eb90e672c1d684750afb0e88cb1.zip
(Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply, Fmake_hash_table):
Add usage: string to doc string.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/fns.c b/src/fns.c
index 9db9672c0d3..a948ed7b567 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -410,7 +410,8 @@ DEFUN ("append", Fappend, Sappend, 0, MANY, 0,
410 doc: /* Concatenate all the arguments and make the result a list. 410 doc: /* Concatenate all the arguments and make the result a list.
411The result is a list whose elements are the elements of all the arguments. 411The result is a list whose elements are the elements of all the arguments.
412Each argument may be a list, vector or string. 412Each argument may be a list, vector or string.
413The last argument is not copied, just used as the tail of the new list. */) 413The last argument is not copied, just used as the tail of the new list.
414usage: (append &rest SEQUENCES) */)
414 (nargs, args) 415 (nargs, args)
415 int nargs; 416 int nargs;
416 Lisp_Object *args; 417 Lisp_Object *args;
@@ -421,7 +422,8 @@ The last argument is not copied, just used as the tail of the new list. */)
421DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0, 422DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0,
422 doc: /* Concatenate all the arguments and make the result a string. 423 doc: /* Concatenate all the arguments and make the result a string.
423The result is a string whose elements are the elements of all the arguments. 424The result is a string whose elements are the elements of all the arguments.
424Each argument may be a string or a list or vector of characters (integers). */) 425Each argument may be a string or a list or vector of characters (integers).
426usage: (concat &rest SEQUENCES) */)
425 (nargs, args) 427 (nargs, args)
426 int nargs; 428 int nargs;
427 Lisp_Object *args; 429 Lisp_Object *args;
@@ -432,7 +434,8 @@ Each argument may be a string or a list or vector of characters (integers). */)
432DEFUN ("vconcat", Fvconcat, Svconcat, 0, MANY, 0, 434DEFUN ("vconcat", Fvconcat, Svconcat, 0, MANY, 0,
433 doc: /* Concatenate all the arguments and make the result a vector. 435 doc: /* Concatenate all the arguments and make the result a vector.
434The result is a vector whose elements are the elements of all the arguments. 436The result is a vector whose elements are the elements of all the arguments.
435Each argument may be a list, vector or string. */) 437Each argument may be a list, vector or string.
438usage: (vconcat &rest SEQUENCES) */)
436 (nargs, args) 439 (nargs, args)
437 int nargs; 440 int nargs;
438 Lisp_Object *args; 441 Lisp_Object *args;
@@ -2588,7 +2591,8 @@ nconc2 (s1, s2)
2588 2591
2589DEFUN ("nconc", Fnconc, Snconc, 0, MANY, 0, 2592DEFUN ("nconc", Fnconc, Snconc, 0, MANY, 0,
2590 doc: /* Concatenate any number of lists by altering them. 2593 doc: /* Concatenate any number of lists by altering them.
2591Only the last argument is not altered, and need not be a list. */) 2594Only the last argument is not altered, and need not be a list.
2595usage: (nconc &rest LISTS) */)
2592 (nargs, args) 2596 (nargs, args)
2593 int nargs; 2597 int nargs;
2594 Lisp_Object *args; 2598 Lisp_Object *args;
@@ -3184,7 +3188,8 @@ later with `widget-put'. */)
3184 3188
3185DEFUN ("widget-apply", Fwidget_apply, Swidget_apply, 2, MANY, 0, 3189DEFUN ("widget-apply", Fwidget_apply, Swidget_apply, 2, MANY, 0,
3186 doc: /* Apply the value of WIDGET's PROPERTY to the widget itself. 3190 doc: /* Apply the value of WIDGET's PROPERTY to the widget itself.
3187ARGS are passed as extra arguments to the function. */) 3191ARGS are passed as extra arguments to the function.
3192usage: (widget-apply WIDGET PROPERTY &rest ARGS) */)
3188 (nargs, args) 3193 (nargs, args)
3189 int nargs; 3194 int nargs;
3190 Lisp_Object *args; 3195 Lisp_Object *args;
@@ -4705,7 +4710,9 @@ returned is a weak table. Key/value pairs are removed from a weak
4705hash table when there are no non-weak references pointing to their 4710hash table when there are no non-weak references pointing to their
4706key, value, one of key or value, or both key and value, depending on 4711key, value, one of key or value, or both key and value, depending on
4707WEAK. WEAK t is equivalent to `key-and-value'. Default value of WEAK 4712WEAK. WEAK t is equivalent to `key-and-value'. Default value of WEAK
4708is nil. */) 4713is nil.
4714
4715usage: (make-hash-table &rest KEYWORD-ARGS) */)
4709 (nargs, args) 4716 (nargs, args)
4710 int nargs; 4717 int nargs;
4711 Lisp_Object *args; 4718 Lisp_Object *args;