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
54ee42dd
Commit
54ee42dd
authored
Jan 09, 1996
by
Erik Naggum
Browse files
(Fmake_symbol): Harmonize arguments with documentation.
parent
9391b698
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/alloc.c
src/alloc.c
+3
-3
No files found.
src/alloc.c
View file @
54ee42dd
...
...
@@ -870,13 +870,13 @@ init_symbol ()
DEFUN
(
"make-symbol"
,
Fmake_symbol
,
Smake_symbol
,
1
,
1
,
0
,
"Return a newly allocated uninterned symbol whose name is NAME.
\n
\
Its value and function definition are void, and its property list is nil."
)
(
str
)
Lisp_Object
str
;
(
name
)
Lisp_Object
name
;
{
register
Lisp_Object
val
;
register
struct
Lisp_Symbol
*
p
;
CHECK_STRING
(
str
,
0
);
CHECK_STRING
(
name
,
0
);
if
(
symbol_free_list
)
{
...
...
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