aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-09-02 04:31:46 +0000
committernyamatongwe <unknown>2001-09-02 04:31:46 +0000
commit0672f964e260eda782b50f0aee14fe7ed4c4b9ac (patch)
treedd57a2770cafde71a84f8d15511e7e4e7690081a /src
parentee01fdd6af5c9c020841a8853dcf79dedc05536f (diff)
downloadscintilla-mirror-0672f964e260eda782b50f0aee14fe7ed4c4b9ac.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 {