Merge branch 'master' into fix_img_alt

This commit is contained in:
Jim Derry 2015-11-27 09:36:32 +08:00
commit 1c963acb58
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;
}