comparison src/bytecode.c @ 14061:bf43ef5a139c

(Fbyte_code): Harmonize arguments with documentation.
author Erik Naggum <erik@naggum.no>
date Tue, 09 Jan 1996 00:30:34 +0000
parents ab0ac0e12203
children ee40177f6c68
comparison
equal deleted inserted replaced
14060:b62397f49a24 14061:bf43ef5a139c
249 249
250 #define TOP (*stackp) 250 #define TOP (*stackp)
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;
259 { 260 {
260 struct gcpro gcpro1, gcpro2, gcpro3; 261 struct gcpro gcpro1, gcpro2, gcpro3;