1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* env.h (ruby_frame, ruby_scope, ruby_in_eval, ruby_class,

ruby_dyna_vars): export.  [ruby-dev:22566]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-01-11 14:54:44 +00:00
parent f32d0e8934
commit db4ec3c56a
2 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,8 @@
Sun Jan 11 23:54:41 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* env.h (ruby_frame, ruby_scope, ruby_in_eval, ruby_class,
ruby_dyna_vars): export. [ruby-dev:22566]
Sun Jan 11 02:35:53 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/socket/socket.c (make_hostent): a bug in brace position.
@ -7,7 +12,7 @@ Sun Jan 11 02:35:53 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
Sun Jan 11 02:07:47 2004 Dave Thomas <dave@pragprog.com>
* lib/rdoc/ri/ri_options.rb (RI::Options::OptionList::OptionList):
* lib/rdoc/ri/ri_options.rb (RI::Options::OptionList::OptionList):
Also accept command line options via the 'RI' environment variable.
Sat Jan 10 21:27:41 2004 Yukihiro Matsumoto <matz@ruby-lang.org>

10
env.h
View file

@ -13,7 +13,7 @@
#ifndef ENV_H
#define ENV_H
extern struct FRAME {
RUBY_EXTERN struct FRAME {
VALUE self;
int argc;
VALUE *argv;
@ -33,7 +33,7 @@ void rb_gc_mark_frame _((struct FRAME *));
#define FRAME_ALLOCA 0
#define FRAME_MALLOC 1
extern struct SCOPE {
RUBY_EXTERN struct SCOPE {
struct RBasic super;
ID *local_tbl;
VALUE *local_vars;
@ -45,9 +45,9 @@ extern struct SCOPE {
#define SCOPE_NOSTACK 2
#define SCOPE_DONT_RECYCLE 4
extern int ruby_in_eval;
RUBY_EXTERN int ruby_in_eval;
extern VALUE ruby_class;
RUBY_EXTERN VALUE ruby_class;
struct RVarmap {
struct RBasic super;
@ -55,6 +55,6 @@ struct RVarmap {
VALUE val;
struct RVarmap *next;
};
extern struct RVarmap *ruby_dyna_vars;
RUBY_EXTERN struct RVarmap *ruby_dyna_vars;
#endif /* ENV_H */