Avoid short circuit evaluation to give new callback a chance to execute.
Version bump.
This commit is contained in:
parent
a354eff596
commit
492c9fb74b
|
@ -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);
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
5.5.67
|
||||
5.5.68
|
||||
2017.10.19
|
||||
|
|
Loading…
Reference in a new issue