summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index b1ff12c..bde39bd 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1663,7 +1663,10 @@ nextChar:
}
}
ADD_CHAR(c);
- if (cliSupport && (c=='^' || c=='%') && i>1 && isId(s.at(i-1)))
+ if (cliSupport &&
+ (c=='^' || c=='%') && i>1 && isId(s.at(i-1)) &&
+ !findOperator(s,i)
+ )
{
ADD_CHAR(' '); // C++/CLI: Type^ name and Type% name
}