diff --git a/clexer.c b/clexer.c index 856b320..75adc87 100644 --- a/clexer.c +++ b/clexer.c @@ -228,11 +228,6 @@ char const *examinechar(struct clexer *cl, char const *input) } else { ++cl->charquote; } - if (cl->charquote > 2) { /* optional */ - error(errBadCharLiteral); - cl->state |= F_EndOfLine; - return input; - } } else if (cl->state & F_InString) { if (*in == '\\') readwhack(cl, in);