diff options
author | Brad King <brad.king@kitware.com> | 2012-10-01 19:18:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-10-01 19:18:30 (GMT) |
commit | 4b8d3639ad42d0ddfaee8cf52e3979b7e60eacc1 (patch) | |
tree | 65e3195a695cd2510819dae228de5f046b2de3ea /Source/kwsys/SystemTools.cxx | |
parent | a61f633737067da7d765c5e479a7d6754d4a083a (diff) | |
parent | 5d0de36d2b2f420ab58841bbcd47c45fcdc4486e (diff) | |
download | CMake-4b8d3639ad42d0ddfaee8cf52e3979b7e60eacc1.zip CMake-4b8d3639ad42d0ddfaee8cf52e3979b7e60eacc1.tar.gz CMake-4b8d3639ad42d0ddfaee8cf52e3979b7e60eacc1.tar.bz2 |
Merge branch 'upstream-kwsys' into import-KWSys-subtree
Diffstat (limited to 'Source/kwsys/SystemTools.cxx')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 66850e9..085d988 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -1665,7 +1665,7 @@ kwsys_stl::string SystemTools::EscapeChars( kwsys_stl::string n; if (str) { - if (!chars_to_escape | !*chars_to_escape) + if (!chars_to_escape || !*chars_to_escape) { n.append(str); } |