comparison src/bytecode.c @ 109179:8cfee7d2955f

Convert DEFUNs to standard C. * src/alloc.c: Convert DEFUNs to standard C. * src/buffer.c: * src/bytecode.c: * src/callint.c: * src/callproc.c: * src/casefiddle.c: * src/casetab.c: * src/category.c: * src/character.c: * src/charset.c: * src/chartab.c: * src/cmds.c: * src/coding.c: * src/composite.c: * src/data.c: * src/dbusbind.c: * src/dired.c: * src/dispnew.c: * src/doc.c: * src/dosfns.c: * src/editfns.c: * src/emacs.c: * src/eval.c: * src/fileio.c: * src/filelock.c: * src/floatfns.c: * src/fns.c: * src/font.c: * src/fontset.c: * src/frame.c: * src/fringe.c: * src/image.c: * src/indent.c: * src/insdel.c: * src/keyboard.c: * src/keymap.c: * src/lread.c: * src/macros.c: * src/marker.c: * src/menu.c: * src/minibuf.c: * src/msdos.c: * src/nsfns.m: * src/nsmenu.m: * src/nsselect.m: * src/print.c: * src/process.c: * src/search.c: * src/sound.c: * src/syntax.c: * src/term.c: * src/terminal.c: * src/textprop.c: * src/undo.c: * src/w16select.c: * src/w32console.c: * src/w32fns.c: * src/w32font.c: * src/w32menu.c: * src/w32proc.c: * src/w32select.c: * src/window.c: * src/xdisp.c: * src/xfaces.c: * src/xfns.c: * src/xmenu.c: * src/xselect.c: * src/xsettings.c: * src/xsmfns.c: Likewise.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 08 Jul 2010 14:25:08 -0700
parents aec1143e8d85
children 417b1e4d63cd
comparison
equal deleted inserted replaced
109178:53f8ebcd9a97 109179:8cfee7d2955f
401 doc: /* Function used internally in byte-compiled code. 401 doc: /* Function used internally in byte-compiled code.
402 The first argument, BYTESTR, is a string of byte code; 402 The first argument, BYTESTR, is a string of byte code;
403 the second, VECTOR, a vector of constants; 403 the second, VECTOR, a vector of constants;
404 the third, MAXDEPTH, the maximum stack depth used in this function. 404 the third, MAXDEPTH, the maximum stack depth used in this function.
405 If the third argument is incorrect, Emacs may crash. */) 405 If the third argument is incorrect, Emacs may crash. */)
406 (bytestr, vector, maxdepth) 406 (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth)
407 Lisp_Object bytestr, vector, maxdepth;
408 { 407 {
409 int count = SPECPDL_INDEX (); 408 int count = SPECPDL_INDEX ();
410 #ifdef BYTE_CODE_METER 409 #ifdef BYTE_CODE_METER
411 int this_op = 0; 410 int this_op = 0;
412 int prev_op; 411 int prev_op;