summaryrefslogtreecommitdiff
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorErik Naggum <erik@naggum.no>1996-01-09 00:30:34 +0000
committerErik Naggum <erik@naggum.no>1996-01-09 00:30:34 +0000
commit6d1b415dca114c7eab91f6b45238b53644f0b317 (patch)
tree813a26517df5ead54097c15921da6c6ac8b0e03b /src/bytecode.c
parent31408fcebb77d2e5f227adf4e1973681e48bdee6 (diff)
downloademacs-6d1b415dca114c7eab91f6b45238b53644f0b317.tar.gz
(Fbyte_code): Harmonize arguments with documentation.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c5
1 files changed, 3 insertions, 2 deletions
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;