From 1dff2231461aa595285619fc615e8c2453279eff Mon Sep 17 00:00:00 2001 From: zolliker Date: Mon, 1 Feb 2010 16:14:21 +0000 Subject: [PATCH] - bug fix (end of quoted text was not detected correctly) --- splitter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splitter.c b/splitter.c index 1ef55aa1..9f607ad1 100644 --- a/splitter.c +++ b/splitter.c @@ -141,7 +141,7 @@ TokenList *SplitText(char *pLine) if (eWhat == eQuote) { i = 0; pChar++; - while ((isEnd(*pChar) != 2) && (CheckSpecial(pChar) != eQuote) + while ((isEnd(*pChar) != 2) && (*pChar != '"') && i < 250) { if (*pChar == '\\') { pBueffel[i] = Tcl_Backslash(pChar, &n);