X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=config%2Fzconf.l;fp=config%2Fzconf.l;h=960b1e693ed748a88d20f9c57bb3f7f410084a2e;hb=b5b81a87c764e579256cb533ed5ace8315e9ceff;hp=54058e07a375e4796054b6e90f2b58638ca055ff;hpb=47622d90cc2d17266c41d23b1f4d417fddfdc808;p=carl9170fw.git diff --git a/config/zconf.l b/config/zconf.l index 54058e0..960b1e6 100644 --- a/config/zconf.l +++ b/config/zconf.l @@ -141,7 +141,12 @@ n [A-Za-z0-9_] } #.* /* comment */ \\\n current_file->lineno++; - . + [[:blank:]]+ + . { + fprintf(stderr, + "%s:%d:warning: ignoring unsupported character '%c'\n", + zconf_curname(), zconf_lineno(), *yytext); + } <> { BEGIN(INITIAL); }