summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-20 00:53:57 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-20 00:53:57 +0000
commita25ab421375ebcdd860a01bf14870053868b74a5 (patch)
treed488f0a979b01a3885d06f577bfa390381716c7c /eval.c
parent6fec28d1a2bf752325814c31de62ace73c5a9b3c (diff)
* 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
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
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; \