Mercurial > emacs
changeset 14061:bf43ef5a139c
(Fbyte_code): Harmonize arguments with documentation.
author | Erik Naggum <erik@naggum.no> |
---|---|
date | Tue, 09 Jan 1996 00:30:34 +0000 |
parents | b62397f49a24 |
children | 16a05061fee3 |
files | src/bytecode.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/bytecode.c Tue Jan 09 00:30:29 1996 +0000 +++ b/src/bytecode.c Tue Jan 09 00:30:34 1996 +0000 @@ -251,8 +251,9 @@ 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;