diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-10 08:04:52 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-10 08:04:52 +0000 |
commit | a6e3d19f3ac344613da68dff705fb411d9120d63 (patch) | |
tree | 7f16e466dd79c5750c740d3aac7a4704b924885e /yarvcore.c | |
parent | d4662d49d925484f673969693f47cd4ac4338206 (diff) |
* vm.c, insnhelper.ci: fix svar interface.
* compile.c (iseq_compile_each), yarvcore.h: fix to use new
svar interface for flip flop.
* eval.c: ditto.
* insns.def: ditto.
* include/ruby/intern.h: remove "rb_svar()" declaration.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'yarvcore.c')
-rw-r--r-- | yarvcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yarvcore.c b/yarvcore.c index 72755198d8..194ca1a586 100644 --- a/yarvcore.c +++ b/yarvcore.c @@ -110,7 +110,7 @@ vm_compile_from_node(rb_thread_t *th, NODE * node, VALUE file) } else { iseq = rb_iseq_new(node, rb_str_new2("<main>"), file, - Qfalse, ISEQ_TYPE_TOP); + Qfalse, ISEQ_TYPE_TOP); } return iseq; } |