Allows null value css-prefix to be used in a config file without issuing a warning.

This commit is contained in:
Jim Derry 2015-11-26 11:21:48 +08:00
parent db4f6473ed
commit 63234735d8
1 changed files with 4 additions and 1 deletions

View File

@ -1206,7 +1206,10 @@ Bool ParseCSS1Selector( TidyDocImpl* doc, const TidyOptionImpl* option )
}
buf[i] = '\0';
if ( i == 0 || !TY_(IsCSS1Selector)(buf) ) {
if ( i == 0 ) {
return no;
}
else if ( !TY_(IsCSS1Selector)(buf) ) {
TY_(ReportBadArgument)( doc, option->name );
return no;
}