summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-27 09:31:53 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-27 09:31:53 +0000
commita8382af43a39aa1e442861240506559157921288 (patch)
tree729b6675352f2fb436bbd97e67032bcf851cb04e /parse.y
parent18477557236646240da157ed7d53da4998d3fc35 (diff)
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/parse.y b/parse.y
index 0fcd9919ae..1b4bbf2dc9 100644
--- a/parse.y
+++ b/parse.y
@@ -1535,15 +1535,15 @@ static NODE *str_extend();
static VALUE lex_input; /* non-nil if File */
static VALUE lex_lastline; /* gc protect */
-static UCHAR *lex_pbeg;
-static UCHAR *lex_p;
-static UCHAR *lex_pend;
+static char *lex_pbeg;
+static char *lex_p;
+static char *lex_pend;
static int
yyerror(msg)
char *msg;
{
- UCHAR *p, *pe, *buf;
+ char *p, *pe, *buf;
int len, i;
void Error_Append();