- bug fix (end of quoted text was not detected correctly)
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user