fix various little bugs

This commit is contained in:
rsc 2004-08-17 15:32:40 +00:00
parent e3e30cff40
commit 18b0811745
3 changed files with 6 additions and 8 deletions

View file

@ -18,7 +18,7 @@ void shell_init(void), shell_exec(void), shell_text(char *);
#define CADD cbuf[clen++] = yytext[0]; \
if (clen >= CBUFLEN-1) { \
ERROR "string too long", cbuf WARNING; BEGIN A; }
ERROR "string too long" WARNING; BEGIN A; }
#define CBUFLEN 1500
char cbuf[CBUFLEN];
int clen, cflag;