From 4b1c048ee530868383007124688f15004d306f04 Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Fri, 20 Oct 2017 07:46:00 -0400 Subject: [PATCH] Correct configCallback logic fix. --- src/config.c | 2 +- version.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.c b/src/config.c index e8c01e8..2a40f15 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 77e101c..6bdeaf4 100644 --- a/version.txt +++ b/version.txt @@ -1,2 +1,2 @@ -5.5.69 -2017.10.19 +5.5.70 +2017.10.20