diff src/alloc.c @ 14093:338f645e6b9a

(Fmake_symbol): Harmonize arguments with documentation.
author Erik Naggum <erik@naggum.no>
date Tue, 09 Jan 1996 02:21:31 +0000
parents 621a575db6f7
children d612434249db
line wrap: on
line diff
--- a/src/alloc.c	Tue Jan 09 02:12:16 1996 +0000
+++ b/src/alloc.c	Tue Jan 09 02:21:31 1996 +0000
@@ -870,13 +870,13 @@
 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)
     {