diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-11-25 12:09:36 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-11-25 12:09:36 +0000 |
| commit | 18510a19c9e0e125fa77ead56291673c7d9a7277 (patch) | |
| tree | e081a5cffd8573374e923e6417c4a247bbf37a41 /parse.y | |
| parent | e7a46003da25696fe7dd5bc7a105dc45fb787194 (diff) | |
| download | ruby-18510a19c9e0e125fa77ead56291673c7d9a7277.tar.gz ruby-18510a19c9e0e125fa77ead56291673c7d9a7277.tar.xz ruby-18510a19c9e0e125fa77ead56291673c7d9a7277.zip | |
* parse.y (str_extend): change types of second and third arguments
from char to int.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2048,7 +2048,7 @@ none : /* none */ static char *tokenbuf = NULL; static int tokidx, toksiz = 0; -static NODE *str_extend _((NODE*,char,char)); +static NODE *str_extend _((NODE*,int,int)); #define LEAVE_BS 1 @@ -3879,7 +3879,7 @@ yylex() static NODE* str_extend(list, term, paren) NODE *list; - char term, paren; + int term, paren; { int c; int brace = -1; |
