diff options
| author | Miles Bader | 2001-10-21 14:19:57 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-10-21 14:19:57 +0000 |
| commit | 4bf8e2a32e466eb90e672c1d684750afb0e88cb1 (patch) | |
| tree | f5934c74356539212ed66c9d4915c0c7d3b01a0c /src | |
| parent | 4bfbe194acebfb9a595a819bc3a6613e1e5430df (diff) | |
| download | emacs-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.c | 19 |
1 files changed, 13 insertions, 6 deletions
| @@ -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. |
| 411 | The result is a list whose elements are the elements of all the arguments. | 411 | The result is a list whose elements are the elements of all the arguments. |
| 412 | Each argument may be a list, vector or string. | 412 | Each argument may be a list, vector or string. |
| 413 | The last argument is not copied, just used as the tail of the new list. */) | 413 | The last argument is not copied, just used as the tail of the new list. |
| 414 | usage: (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. */) | |||
| 421 | DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0, | 422 | DEFUN ("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. |
| 423 | The result is a string whose elements are the elements of all the arguments. | 424 | The result is a string whose elements are the elements of all the arguments. |
| 424 | Each argument may be a string or a list or vector of characters (integers). */) | 425 | Each argument may be a string or a list or vector of characters (integers). |
| 426 | usage: (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). */) | |||
| 432 | DEFUN ("vconcat", Fvconcat, Svconcat, 0, MANY, 0, | 434 | DEFUN ("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. |
| 434 | The result is a vector whose elements are the elements of all the arguments. | 436 | The result is a vector whose elements are the elements of all the arguments. |
| 435 | Each argument may be a list, vector or string. */) | 437 | Each argument may be a list, vector or string. |
| 438 | usage: (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 | ||
| 2589 | DEFUN ("nconc", Fnconc, Snconc, 0, MANY, 0, | 2592 | DEFUN ("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. |
| 2591 | Only the last argument is not altered, and need not be a list. */) | 2594 | Only the last argument is not altered, and need not be a list. |
| 2595 | usage: (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 | ||
| 3185 | DEFUN ("widget-apply", Fwidget_apply, Swidget_apply, 2, MANY, 0, | 3189 | DEFUN ("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. |
| 3187 | ARGS are passed as extra arguments to the function. */) | 3191 | ARGS are passed as extra arguments to the function. |
| 3192 | usage: (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 | |||
| 4705 | hash table when there are no non-weak references pointing to their | 4710 | hash table when there are no non-weak references pointing to their |
| 4706 | key, value, one of key or value, or both key and value, depending on | 4711 | key, value, one of key or value, or both key and value, depending on |
| 4707 | WEAK. WEAK t is equivalent to `key-and-value'. Default value of WEAK | 4712 | WEAK. WEAK t is equivalent to `key-and-value'. Default value of WEAK |
| 4708 | is nil. */) | 4713 | is nil. |
| 4714 | |||
| 4715 | usage: (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; |