From 4669ce6da5cc90b1ed7eb07f0133f7cce7ebac92 Mon Sep 17 00:00:00 2001 From: dehilsterlexis Date: Sun, 7 Jul 2024 18:10:16 -0400 Subject: [PATCH] NLP-ENGINE-420 fixed readkbb to read multiword concept names Signed-off-by: dehilsterlexis --- cs/libconsh/cg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cs/libconsh/cg.cpp b/cs/libconsh/cg.cpp index 3d60d60..f0396c3 100644 --- a/cs/libconsh/cg.cpp +++ b/cs/libconsh/cg.cpp @@ -3947,7 +3947,7 @@ bool CG::readKBB(std::string file) { start = end; attrFlag = true; } - else if (!conceptDone && (c == ':' || unicu::isWhiteSpace(c) || end == length || (openDouble && !attrFlag && c == '"'))) { + else if (!conceptDone && (c == ':' || end == length || (openDouble && !attrFlag && c == '"'))) { _tcsnccpy(word, &line[start],end-start); int adjust = (c == ':' || c == '"') ? 1 : 0; openDouble = false;