aboutsummaryrefslogtreecommitdiff
path: root/dw/findtext.hh
diff options
context:
space:
mode:
Diffstat (limited to 'dw/findtext.hh')
-rw-r--r--dw/findtext.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/findtext.hh b/dw/findtext.hh
index d0c20206..e9fb57c2 100644
--- a/dw/findtext.hh
+++ b/dw/findtext.hh
@@ -65,7 +65,7 @@ private:
inline static bool charsEqual (char c1, char c2, bool caseSens)
{ return caseSens ? c1 == c2 : tolower (c1) == tolower (c2) ||
- isspace (c1) && isspace (c2); }
+ (isspace (c1) && isspace (c2)); }
public:
FindtextState ();