aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-12-14 10:58:51 +1100
committernyamatongwe <devnull@localhost>2011-12-14 10:58:51 +1100
commite7ecdbe0acb3c9d7b495f02b511919ae275b26cb (patch)
treeebcf132fd3806d1a6207c4432326cb3ad1881f1b /lexers
parentf8e5188bacb77be060bf116c0cfc44193e9b0200 (diff)
downloadscintilla-mirror-e7ecdbe0acb3c9d7b495f02b511919ae275b26cb.tar.gz
Remove duplicated clause as this caused warning from cppcheck.
Diffstat (limited to 'lexers')
-rw-r--r--lexers/LexMMIXAL.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexMMIXAL.cxx b/lexers/LexMMIXAL.cxx
index 59bb9fd41..43361d429 100644
--- a/lexers/LexMMIXAL.cxx
+++ b/lexers/LexMMIXAL.cxx
@@ -38,7 +38,7 @@ inline bool isMMIXALOperator(char ch) {
if (isascii(ch) && isalnum(ch))
return false;
if (ch == '+' || ch == '-' || ch == '|' || ch == '^' ||
- ch == '*' || ch == '/' || ch == '/' ||
+ ch == '*' || ch == '/' ||
ch == '%' || ch == '<' || ch == '>' || ch == '&' ||
ch == '~' || ch == '$' ||
ch == ',' || ch == '(' || ch == ')' ||