Correct configCallback logic fix.

This commit is contained in:
Jim Derry 2017-10-20 07:46:00 -04:00
parent d302559080
commit 4b1c048ee5
2 changed files with 3 additions and 3 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.69
2017.10.19
5.5.70
2017.10.20