diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-20 00:55:49 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-20 00:55:49 +0000 |
| commit | f652cadb5a053a5b9df51e03bb23cefac92b4576 (patch) | |
| tree | ed8b03ae45efee919bcf778b0c456748a0cbcc59 /eval.c | |
| parent | 18d616be64b2d3d826fe449178d0b50237f47479 (diff) | |
| download | ruby-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |
