Mercurial > emacs
changeset 14093:338f645e6b9a
(Fmake_symbol): Harmonize arguments with documentation.
author | Erik Naggum <erik@naggum.no> |
---|---|
date | Tue, 09 Jan 1996 02:21:31 +0000 |
parents | 279f5f3528a8 |
children | e5e4fe8e968f |
files | src/alloc.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
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) {