summaryrefslogtreecommitdiffstats
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
commitf652cadb5a053a5b9df51e03bb23cefac92b4576 (patch)
treeed8b03ae45efee919bcf778b0c456748a0cbcc59 /eval.c
parent18d616be64b2d3d826fe449178d0b50237f47479 (diff)
downloadruby-f652cadb5a053a5b9df51e03bb23cefac92b4576.tar.gz
ruby-f652cadb5a053a5b9df51e03bb23cefac92b4576.tar.xz
ruby-f652cadb5a053a5b9df51e03bb23cefac92b4576.zip
* 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
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 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; \