-/* $OpenBSD: bt_parse.y,v 1.54 2023/10/12 15:16:44 cheloha Exp $ */
+/* $OpenBSD: bt_parse.y,v 1.55 2023/12/20 01:38:46 dv Exp $ */
/*
* Copyright (c) 2019-2023 Martin Pieuchot <mpi@openbsd.org>
}
*p++ = c;
if (p == ebuf) {
- yyerror("too long line");
+ yyerror("line too long");
return ERROR;
}
}
do {
*p++ = c;
if (p == ebuf) {
- yyerror("too long line");
+ yyerror("line too long");
return ERROR;
}
} while ((c = lgetc()) != EOF && isdigit(c));
do {
*p++ = c;
if (p == ebuf) {
- yyerror("too long line");
+ yyerror("line too long");
return ERROR;
}
} while ((c = lgetc()) != EOF && (allowed_in_string(c)));