BUG: do escaped semi-colon better

This commit is contained in:
Bill Hoffman 2002-04-18 13:12:36 -04:00
parent 72022ac27b
commit dc15248b40
1 changed files with 1 additions and 1 deletions

View File

@ -1862,7 +1862,7 @@ void cmSystemTools::ExpandListArguments(std::vector<std::string> const& argument
std::string::size_type pos = newarg.find("\\;");
if(pos != std::string::npos)
{
newarg[pos] = ' ';
newarg.erase(pos, 1);
}
newargs.push_back(newarg);
}