diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-11-18 16:59:53 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-11-18 16:59:53 -0500 |
commit | 1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa (patch) | |
tree | caee914748ce13486de1aac4baf7f0b351af522b /Source/cmXCodeObject.cxx | |
parent | 1ecb0e02aff37056cfe8d36b6bd314ba08101923 (diff) | |
download | cmake-1c01c12af303ff23b8ad34bdb9bd9b8ebe5d49fa.tar.gz |
ENH: more chars need quotes
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r-- | Source/cmXCodeObject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index 2fddf66b91..345bc57623 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -186,7 +186,7 @@ void cmXCodeObject::SetString(const char* s) } bool needQuote = false; m_String = ""; - if(ss.find_first_of(" <>.+") != ss.npos) + if(ss.find_first_of(" <>.+-=") != ss.npos) { needQuote = true; } |