From: Erik Naggum Date: Tue, 9 Jan 1996 02:44:30 +0000 (+0000) Subject: (Fmake_symbol): Harmonize arguments with documentation (correctly). X-Git-Tag: emacs-19.34~1765 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=636b7260dc3d8bfee8155f9298ddc0066d8fe3a0;p=emacs.git (Fmake_symbol): Harmonize arguments with documentation (correctly). --- diff --git a/src/alloc.c b/src/alloc.c index 00a03e850d8..a2a2a661e0c 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -899,7 +899,7 @@ Its value and function definition are void, and its property list is nil.") XSETSYMBOL (val, &symbol_block->symbols[symbol_block_index++]); } p = XSYMBOL (val); - p->name = XSTRING (str); + p->name = XSTRING (name); p->plist = Qnil; p->value = Qunbound; p->function = Qunbound;