From 412f5709ef657afba47a25639f629ea83d581fac Mon Sep 17 00:00:00 2001 From: usa Date: Sun, 25 Nov 2001 12:09:36 +0000 Subject: * parse.y (str_extend): change types of second and third arguments from char to int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ parse.y | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1643c6eccb..89aeb3245a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Nov 25 21:02:18 2001 Usaku Nakamura + + * parse.y (str_extend): change types of second and third arguments + from char to int. + Thu Nov 22 00:28:13 2001 Yukihiro Matsumoto * parse.y (str_extend): should check nesting parentheses in #{}. diff --git a/parse.y b/parse.y index 1e36ca7441..e1c2dd46d1 100644 --- a/parse.y +++ b/parse.y @@ -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; -- cgit v1.2.3