mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
Log message:
use u_char for buffers in yylex, for ctype calls, as done in all other parse.y in the tree found by millert@, ok okan@
This commit is contained in:
parent
2937b2066f
commit
03b19f1487
10
parse.y
10
parse.y
@ -286,9 +286,9 @@ lookup(char *s)
|
||||
|
||||
#define MAXPUSHBACK 128
|
||||
|
||||
char *parsebuf;
|
||||
u_char *parsebuf;
|
||||
int parseindex;
|
||||
char pushback_buffer[MAXPUSHBACK];
|
||||
u_char pushback_buffer[MAXPUSHBACK];
|
||||
int pushback_index = 0;
|
||||
|
||||
int
|
||||
@ -381,8 +381,8 @@ findeol(void)
|
||||
int
|
||||
yylex(void)
|
||||
{
|
||||
char buf[8096];
|
||||
char *p;
|
||||
u_char buf[8096];
|
||||
u_char *p;
|
||||
int quotec, next, c;
|
||||
int token;
|
||||
|
||||
@ -423,7 +423,7 @@ yylex(void)
|
||||
yyerror("string too long");
|
||||
return (findeol());
|
||||
}
|
||||
*p++ = (char)c;
|
||||
*p++ = c;
|
||||
}
|
||||
yylval.v.string = xstrdup(buf);
|
||||
return (STRING);
|
||||
|
Loading…
Reference in New Issue
Block a user