aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexAVE.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-02-17 10:40:09 +0000
committernyamatongwe <devnull@localhost>2001-02-17 10:40:09 +0000
commit4e8fffae543c93763d8fef3715091f815dc87dbf (patch)
tree82618e57933d9200afe8206d69e3ca3aaebb8e6b /src/LexAVE.cxx
parentabb01b3baf78d6e9db09c10cbe5777c4f9c586b6 (diff)
downloadscintilla-mirror-4e8fffae543c93763d8fef3715091f815dc87dbf.tar.gz
Fixed some warnings from Borland.
Diffstat (limited to 'src/LexAVE.cxx')
-rw-r--r--src/LexAVE.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/LexAVE.cxx b/src/LexAVE.cxx
index 6bfced6e4..6382f6cf7 100644
--- a/src/LexAVE.cxx
+++ b/src/LexAVE.cxx
@@ -32,7 +32,6 @@ static void ColouriseAveDoc(unsigned int startPos, int length, int initStyle, Wo
int state = initStyle;
if (state == SCE_AVE_STRINGEOL) // Does not leak onto next line
state = SCE_AVE_DEFAULT;
- char chPrev = ' ';
char chNext = styler[startPos];
unsigned int lengthDoc = startPos + length;
int visibleChars = 0;
@@ -65,7 +64,6 @@ static void ColouriseAveDoc(unsigned int startPos, int length, int initStyle, Wo
visibleChars++;
if (styler.IsLeadByte(ch)) {
chNext = styler.SafeGetCharAt(i + 2);
- chPrev = ' ';
i += 1;
continue;
}