diff --git a/src/nppAutoDetectIndent.cpp b/src/nppAutoDetectIndent.cpp index 4b272ef..b3b859c 100644 --- a/src/nppAutoDetectIndent.cpp +++ b/src/nppAutoDetectIndent.cpp @@ -58,7 +58,7 @@ namespace { for (const char c : str) { - if (c == '\t' || c == ' ') + if ((c == '\t') || (c == ' ')) continue; return c; }