summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-20 00:55:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-20 00:55:49 +0000
commitc519ca950086a31fe2ff8536e45cf04c16892ab1 (patch)
treeed8b03ae45efee919bcf778b0c456748a0cbcc59 /eval.c
parentfd50b3cdde34021ab43d8bc49a29bfb0f5bc7a56 (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9965 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 8a26fc36d3..dc72e7425d 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; \