Mercurial > emacs
changeset 40113:66132b83e52a
(Fmake_byte_code, Fvector, Flist): Add usage: string to doc string.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 21 Oct 2001 09:51:56 +0000 |
parents | 3a1cdf305658 |
children | c8af574bcf48 |
files | src/alloc.c |
diffstat | 1 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Sun Oct 21 09:21:46 2001 +0000 +++ b/src/alloc.c Sun Oct 21 09:51:56 2001 +0000 @@ -2130,8 +2130,9 @@ DEFUN ("list", Flist, Slist, 0, MANY, 0, - doc: /* Return a newly created list with specified arguments as elements. -Any number of arguments, even zero arguments, are allowed. */) + doc: /* Return a newly created list with specified arguments as elements. +Any number of arguments, even zero arguments, are allowed. +usage: (list &rest OBJECTS) */) (nargs, args) int nargs; register Lisp_Object *args; @@ -2402,8 +2403,9 @@ DEFUN ("vector", Fvector, Svector, 0, MANY, 0, - doc: /* Return a newly created vector with specified arguments as elements. -Any number of arguments, even zero arguments, are allowed. */) + doc: /* Return a newly created vector with specified arguments as elements. +Any number of arguments, even zero arguments, are allowed. +usage: (vector &rest OBJECTS) */) (nargs, args) register int nargs; Lisp_Object *args; @@ -2426,7 +2428,8 @@ The arguments should be the arglist, bytecode-string, constant vector, stack size, (optional) doc string, and (optional) interactive spec. The first four arguments are required; at most six have any -significance. */) +significance. +usage: (make-byte-code &rest ELEMENTS) */) (nargs, args) register int nargs; Lisp_Object *args;