pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
1997-02-27
1997-02-27 11:06:22 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
48e2f4c334ada55b21d954014c0813fcbc0b6db5 (
5
lines) (+
4
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
fix for new backtrace()
Rev: src/interpret.c:1.25
4:
||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: interpret.c,v 1.
24
1997/02/27
08
:
03
:
39
hubbe Exp $");
+
RCSID("$Id: interpret.c,v 1.
25
1997/02/27
11
:
06
:
22
hubbe Exp $");
#include "interpret.h" #include "object.h" #include "program.h"
1147:
new_frame.context=o->prog->inherits[0]; new_frame.locals = evaluator_stack; new_frame.args = 0;
+
new_frame.num_args=0;
+
new_frame.num_locals=0;
new_frame.fun = -1; new_frame.pc = 0; new_frame.current_storage=o->storage;