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

* eval.c (rb_thread_start_0): must use ruby_longjmp instead of

longjmp.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-12 04:40:48 +00:00
parent 3094ebf3d1
commit fd73d45833
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Jan 12 13:41:33 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_thread_start_0): must use ruby_longjmp instead of
longjmp.
Sun Jan 11 20:19:38 2009 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/erb.rb (PercentScanner): remove PercentScanner. fixed % after

2
eval.c
View file

@ -12414,7 +12414,7 @@ rb_thread_start_0(fn, arg, th)
th->anchor = ip;
thread_insert(th);
curr_thread = th;
longjmp((prot_tag = ip->tag)->buf, TAG_THREAD);
ruby_longjmp((prot_tag = ip->tag)->buf, TAG_THREAD);
}
if (ruby_block) { /* should nail down higher blocks */