]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fbyte_code): Harmonize arguments with documentation.
authorErik Naggum <erik@naggum.no>
Tue, 9 Jan 1996 00:30:34 +0000 (00:30 +0000)
committerErik Naggum <erik@naggum.no>
Tue, 9 Jan 1996 00:30:34 +0000 (00:30 +0000)
src/bytecode.c

index cc5b46047db82627651e932849976db7919ea3e7..422855f4ed1b77ba31d1f11c2e61c159fb5e0b45 100644 (file)
@@ -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;