BUG: Fix escaping to make OSX work again
This commit is contained in:
parent
05f5f379a7
commit
9e9b6a8354
|
@ -168,9 +168,11 @@ bool cmCommandArgumentParserHelper::HandleEscapeSymbol(cmCommandArgumentParserHe
|
|||
case ')':
|
||||
case '$':
|
||||
case '^':
|
||||
case ';':
|
||||
this->AllocateParserType(pt, &symbol, 1);
|
||||
break;
|
||||
case ';':
|
||||
this->AllocateParserType(pt, "\\;", 2);
|
||||
break;
|
||||
case 't':
|
||||
this->AllocateParserType(pt, "\t", 1);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue