BUG: Fix escaping to make OSX work again

This commit is contained in:
Andy Cedilnik 2005-06-21 11:01:24 -04:00
parent 05f5f379a7
commit 9e9b6a8354
1 changed files with 3 additions and 1 deletions

View File

@ -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;