Avoid short circuit evaluation to give new callback a chance to execute.

Version bump.
This commit is contained in:
Jim Derry 2017-10-19 20:11:26 -04:00
parent a354eff596
commit 492c9fb74b
2 changed files with 2 additions and 2 deletions

View file

@ -941,7 +941,7 @@ int TY_(ParseConfigFileEnc)( TidyDocImpl* doc, ctmbstr file, ctmbstr charenc )
response = (*doc->pOptCallback)( name, buf );
if ( doc->pConfigCallback )
response = response && (*doc->pConfigCallback)( tidyImplToDoc(doc), name, buf );
response = response & (*doc->pConfigCallback)( tidyImplToDoc(doc), name, buf );
if ( !response && isDeprecated )
response = subDeprecatedOption( doc, name, buf);

View file

@ -1,2 +1,2 @@
5.5.67
5.5.68
2017.10.19