diff options
| author | Erik Naggum | 1996-01-09 00:30:34 +0000 |
|---|---|---|
| committer | Erik Naggum | 1996-01-09 00:30:34 +0000 |
| commit | 1c57922803f125add003cb06dcf691529872d030 (patch) | |
| tree | 03c2a53eb7ebda5acb4908c2e3aa8a9d3a738199 /src/bytecode.c | |
| parent | a2428fa2a27155a5f4c75105d2b3975d2af5f0f7 (diff) | |
| download | emacs-1c57922803f125add003cb06dcf691529872d030.tar.gz emacs-1c57922803f125add003cb06dcf691529872d030.zip | |
(Fbyte_code): Harmonize arguments with documentation.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 5 |
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; | |||
| 251 | 251 | ||
| 252 | DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0, | 252 | DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0, |
| 253 | "Function used internally in byte-compiled code.\n\ | 253 | "Function used internally in byte-compiled code.\n\ |
| 254 | The first argument is a string of byte code; the second, a vector of constants;\n\ | 254 | The first argument, BYTESTR, is a string of byte code;\n\ |
| 255 | the third, the maximum stack depth used in this function.\n\ | 255 | the second, VECTOR, a vector of constants;\n\ |
| 256 | the third, MAXDEPTH, the maximum stack depth used in this function.\n\ | ||
| 256 | If the third argument is incorrect, Emacs may crash.") | 257 | If the third argument is incorrect, Emacs may crash.") |
| 257 | (bytestr, vector, maxdepth) | 258 | (bytestr, vector, maxdepth) |
| 258 | Lisp_Object bytestr, vector, maxdepth; | 259 | Lisp_Object bytestr, vector, maxdepth; |