From: Erik Naggum Date: Tue, 9 Jan 1996 02:21:31 +0000 (+0000) Subject: (Fmake_symbol): Harmonize arguments with documentation. X-Git-Tag: emacs-19.34~1767 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=54ee42dd61458c3bae404a08d4a4da1b619525fc;p=emacs.git (Fmake_symbol): Harmonize arguments with documentation. --- diff --git a/src/alloc.c b/src/alloc.c index e911dfce35c..00a03e850d8 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) {