From 492c9fb74b14c33735ae8f240b8a68674c8f0afa Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Thu, 19 Oct 2017 20:11:26 -0400 Subject: [PATCH] Avoid short circuit evaluation to give new callback a chance to execute. Version bump. --- src/config.c | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.c b/src/config.c index b9ecbba..e8c01e8 100644 --- a/src/config.c +++ b/src/config.c @@ -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); diff --git a/version.txt b/version.txt index b6c263f..9c96289 100644 --- a/version.txt +++ b/version.txt @@ -1,2 +1,2 @@ -5.5.67 +5.5.68 2017.10.19