summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-04-18 17:12:36 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-04-18 17:12:36 (GMT)
commitdc15248b40672ddff590d6aedbb0bad9e0ddae4b (patch)
treeebfb3a9c2533624cc78095f5f27f1dfd90c49873 /Source/cmSystemTools.cxx
parent72022ac27ba0ec4476a468b789c600f00edab669 (diff)
downloadCMake-dc15248b40672ddff590d6aedbb0bad9e0ddae4b.zip
CMake-dc15248b40672ddff590d6aedbb0bad9e0ddae4b.tar.gz
CMake-dc15248b40672ddff590d6aedbb0bad9e0ddae4b.tar.bz2
BUG: do escaped semi-colon better
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 27b53d3..1f68b70 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -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);
}