From f652cadb5a053a5b9df51e03bb23cefac92b4576 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 20 Feb 2006 00:55:49 +0000 Subject: * lib/rational.rb (Integer::gcd): replaced by gcd4 in [ruby-core:07390]. [ruby-core:07377] * eval.c: initial value for block_unique must be 1. [ruby-talk:180420] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9965 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 8a26fc36d..dc72e7425 100644 --- a/eval.c +++ b/eval.c @@ -755,7 +755,7 @@ struct SCOPE *ruby_scope; static struct FRAME *top_frame; static struct SCOPE *top_scope; -static unsigned long frame_unique = 0; +static unsigned long frame_unique = 1; #define PUSH_FRAME() do { \ struct FRAME _frame; \ -- cgit