diff options
author | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-21 15:47:54 +0000 |
---|---|---|
committer | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-21 15:47:54 +0000 |
commit | fa79abb533cc03018a50945bc1d88b2e1b90248f (patch) | |
tree | 3b51176716a877c59eebbe6e82533d2cae3d7bc5 /parse.y | |
parent | 2ab0494d233b2ee5f7eed92b7dfd0486ab36396d (diff) | |
download | ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.tar.gz ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.tar.xz ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.zip |
*.c: Int vs Long cleanup
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -954,7 +954,7 @@ arg : lhs '=' arg if ($2 && nd_type($2) == NODE_LIT && FIXNUM_P($2->nd_lit)) { long i = FIX2LONG($2->nd_lit); - $2->nd_lit = INT2NUM(-i); + $2->nd_lit = LONG2NUM(-i); $$ = $2; } else { @@ -3020,7 +3020,7 @@ here_document(here) { int c, func, indent = 0; char *eos; - int len; + long len; VALUE str = 0, line; eos = RSTRING(here->nd_lit)->ptr; |