summaryrefslogtreecommitdiff
path: root/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'env.h')
-rw-r--r--env.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/env.h b/env.h
index ebf378073f..ebed038d39 100644
--- a/env.h
+++ b/env.h
@@ -3,8 +3,8 @@
env.h -
$Author: matz $
- $Revision: 1.5 $
- $Date: 1994/11/01 08:27:51 $
+ $Revision: 1.7 $
+ $Date: 1994/12/19 08:30:01 $
created at: Mon Jul 11 11:53:03 JST 1994
************************************************/
@@ -12,27 +12,21 @@
#define ENV_H
extern struct ENVIRON {
- VALUE self;
int argc;
VALUE *argv;
+ VALUE arg_ary;
ID last_func;
struct RClass *last_class;
struct ENVIRON *prev;
} *the_env;
-#undef Qself
-#define Qself the_env->self
-
extern struct SCOPE {
ID *local_tbl;
VALUE *local_vars;
- VALUE block;
- int flags;
+ VALUE var_ary;
struct SCOPE *prev;
} *the_scope;
-#define VARS_MALLOCED (1<<2)
-
extern int rb_in_eval;
#endif /* ENV_H */