mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c: initial value for block_unique must be 1.
[ruby-talk:180420] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6fec28d1a2
commit
a25ab42137
2 changed files with 6 additions and 1 deletions
|
@ -27,6 +27,11 @@ Mon Feb 20 00:13:49 2006 Tanaka Akira <akr@m17n.org>
|
|||
|
||||
* lib/open-uri.rb: add :ssl_ca_cert option.
|
||||
|
||||
Sun Feb 19 04:46:29 2006 Guy Decoux <ts@moulon.inra.fr>
|
||||
|
||||
* eval.c: initial value for block_unique must be 1.
|
||||
[ruby-talk:180420]
|
||||
|
||||
Sat Feb 18 23:58:26 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* lib/tracer.rb (Tracer::Tracer.add_filter): turn on tracer mode
|
||||
|
|
2
eval.c
2
eval.c
|
@ -740,7 +740,7 @@ static unsigned long frame_unique = 0;
|
|||
ruby_frame = _frame.prev; \
|
||||
} while (0)
|
||||
|
||||
static unsigned long block_unique = 0;
|
||||
static unsigned long block_unique = 1;
|
||||
|
||||
#define PUSH_BLOCK(v,iv,b) do { \
|
||||
struct BLOCK _block; \
|
||||
|
|
Loading…
Add table
Reference in a new issue