aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexRuby.cxx
diff options
context:
space:
mode:
authorColomban Wendling <ban@herbesfolles.org>2014-07-30 03:14:08 +0200
committerColomban Wendling <ban@herbesfolles.org>2014-07-30 03:14:08 +0200
commitfb799d1e2945952169cf2d2f67a36017edadfafd (patch)
tree116b9d423044eda1fec81ba725be91dacc2c71ac /lexers/LexRuby.cxx
parentcfecd76e44e08f41dab922f4438abe7f852da24d (diff)
downloadscintilla-mirror-fb799d1e2945952169cf2d2f67a36017edadfafd.tar.gz
Ruby: fix theoretical missing assignment and remove dead one
Diffstat (limited to 'lexers/LexRuby.cxx')
-rw-r--r--lexers/LexRuby.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexRuby.cxx b/lexers/LexRuby.cxx
index e9b3cfb0e..d4c3fad25 100644
--- a/lexers/LexRuby.cxx
+++ b/lexers/LexRuby.cxx
@@ -898,8 +898,8 @@ static void ColouriseRbDoc(unsigned int startPos, int length, int initStyle,
state = SCE_RB_DEFAULT;
}
i += 3;
+ ch = styler.SafeGetCharAt(i);
chNext = styler.SafeGetCharAt(i+1);
- chNext2 = styler.SafeGetCharAt(i+2);
} else if (chNext == '$' && strchr("_~*$?!@/\\;,.=:<>\"&`'+", chNext2)) {
// single-character special global variables
i += 2;