summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-11-25 12:09:36 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-11-25 12:09:36 +0000
commit18510a19c9e0e125fa77ead56291673c7d9a7277 (patch)
treee081a5cffd8573374e923e6417c4a247bbf37a41 /parse.y
parente7a46003da25696fe7dd5bc7a105dc45fb787194 (diff)
downloadruby-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.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 1e36ca744..e1c2dd46d 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;