1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00

opening brace on same line as while

other AbEnd messages don't end in .
This commit is contained in:
bbbradsmith 2023-05-06 11:55:21 -04:00
parent 8d048699ee
commit 1df7ab0352

View File

@ -851,10 +851,9 @@ static char *filterInput (FILE *F, char *tbl)
int a, prevchar = -1, i = 0, bracket = 0, quote = 1;
a = getc(F);
while (1)
{
while (1) {
if (i >= BLOODY_BIG_BUFFER) {
AbEnd ("File too large for internal parsing buffer (%d bytes).",BLOODY_BIG_BUFFER);
AbEnd ("File too large for internal parsing buffer (%d bytes)",BLOODY_BIG_BUFFER);
}
if ((a == '\n') || (a == '\015')) a = ' ';
if (a == ',' && quote) a = ' ';