aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-09-02 04:31:46 +0000
committernyamatongwe <devnull@localhost>2001-09-02 04:31:46 +0000
commit1b2bc2876b9e9f2fff8ae3583a1200499dd364ca (patch)
treedd57a2770cafde71a84f8d15511e7e4e7690081a /src
parent7a0aed746d9b220a1c445135a7e2118c3f8eb75a (diff)
downloadscintilla-mirror-1b2bc2876b9e9f2fff8ae3583a1200499dd364ca.tar.gz
Fixed Borland warning.
Diffstat (limited to 'src')
-rw-r--r--src/LexHTML.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx
index aef65beca..3cf2daf63 100644
--- a/src/LexHTML.cxx
+++ b/src/LexHTML.cxx
@@ -376,7 +376,7 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty
styler.StartAt(startPos, 127);
int lineCurrent = styler.GetLine(startPos);
- int lineState = 0;
+ int lineState;
if (lineCurrent > 0) {
lineState = styler.GetLineState(lineCurrent);
} else {