diff --git a/src/lexer.l b/src/lexer.l index eeb3a4a1..623f26db 100644 --- a/src/lexer.l +++ b/src/lexer.l @@ -280,7 +280,7 @@ c: { yyerror("possible old-style config file entry\n" "/avrdude.conf.sample for a sample)"); return YYERRCODE; } -. { return YYERRCODE; } - +. { yyerror("unknown token"); + return YYERRCODE; } %%