From a25ab421375ebcdd860a01bf14870053868b74a5 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 20 Feb 2006 00:53:57 +0000 Subject: * 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 --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 82d8b8beea..e3e06976cf 100644 --- a/eval.c +++ b/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; \ -- cgit v1.2.3