Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ae8e8122
Commit
ae8e8122
authored
Oct 21, 2001
by
Miles Bader
Browse files
(Fmake_byte_code, Fvector, Flist): Add usage: string to doc string.
parent
d097ad57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
src/alloc.c
src/alloc.c
+8
-5
No files found.
src/alloc.c
View file @
ae8e8122
...
...
@@ -2130,8 +2130,9 @@ list5 (arg1, arg2, arg3, arg4, arg5)
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 @@ make_sub_char_table (defalt)
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 @@ DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment