aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorErik Naggum <[email protected]>1996-01-09 02:21:31 +0000
committerErik Naggum <[email protected]>1996-01-09 02:21:31 +0000
commit54ee42dd61458c3bae404a08d4a4da1b619525fc (patch)
tree2fd219200d8dd4ee5e69321a6a6219316f4a6436 /src/alloc.c
parent9391b69806801ea8cfdf977fd1c4fdc5d0081d8a (diff)
(Fmake_symbol): Harmonize arguments with documentation.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index e911dfce35..00a03e850d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -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)
{