From: Erik Naggum Date: Tue, 9 Jan 1996 00:30:34 +0000 (+0000) Subject: (Fbyte_code): Harmonize arguments with documentation. X-Git-Tag: emacs-19.34~1799 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1c57922803f125add003cb06dcf691529872d030;p=emacs.git (Fbyte_code): Harmonize arguments with documentation. --- diff --git a/src/bytecode.c b/src/bytecode.c index cc5b46047db..422855f4ed1 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -251,8 +251,9 @@ Lisp_Object Qbytecode; DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0, "Function used internally in byte-compiled code.\n\ -The first argument is a string of byte code; the second, a vector of constants;\n\ -the third, the maximum stack depth used in this function.\n\ +The first argument, BYTESTR, is a string of byte code;\n\ +the second, VECTOR, a vector of constants;\n\ +the third, MAXDEPTH, the maximum stack depth used in this function.\n\ If the third argument is incorrect, Emacs may crash.") (bytestr, vector, maxdepth) Lisp_Object bytestr, vector, maxdepth;