diff options
author | markt <markt> | 2007-01-02 03:12:24 (GMT) |
---|---|---|
committer | markt <markt> | 2007-01-02 03:12:24 (GMT) |
commit | 8588402376c57890deb7cd77f56bef4337f00b63 (patch) | |
tree | e81afc0d0d0a41ec2ba31ad5a6a7c9e0103c7549 /src/ClientPattern.cc | |
parent | 9910094bd10d857b250e3e7826a4305695ed23a0 (diff) | |
download | fluxbox_pavel-8588402376c57890deb7cd77f56bef4337f00b63.zip fluxbox_pavel-8588402376c57890deb7cd77f56bef4337f00b63.tar.bz2 |
don't escape regex metacharacters when writing apps file
Diffstat (limited to 'src/ClientPattern.cc')
-rw-r--r-- | src/ClientPattern.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ClientPattern.cc b/src/ClientPattern.cc index d2c809c..339092d 100644 --- a/src/ClientPattern.cc +++ b/src/ClientPattern.cc | |||
@@ -170,11 +170,6 @@ string ClientPattern::toString() const { | |||
170 | for (; it != it_end; ++it) { | 170 | for (; it != it_end; ++it) { |
171 | 171 | ||
172 | pat.append(" ("); | 172 | pat.append(" ("); |
173 | // replace special chars like ( ) and [ ] with \( \) and \[ \] | ||
174 | string orig = FbTk::StringUtil::replaceString((*it)->orig, "(", "\\("); | ||
175 | orig = FbTk::StringUtil::replaceString(orig, ")", "\\)"); | ||
176 | orig = FbTk::StringUtil::replaceString(orig, "[", "\\["); | ||
177 | orig = FbTk::StringUtil::replaceString(orig, "]", "\\]"); | ||
178 | 173 | ||
179 | switch ((*it)->prop) { | 174 | switch ((*it)->prop) { |
180 | case NAME: | 175 | case NAME: |
@@ -190,7 +185,7 @@ string ClientPattern::toString() const { | |||
190 | pat.append("role="); | 185 | pat.append("role="); |
191 | } | 186 | } |
192 | 187 | ||
193 | pat.append(orig); | 188 | pat.append((*it)->orig); |
194 | pat.append(")"); | 189 | pat.append(")"); |
195 | } | 190 | } |
196 | 191 | ||