diff options
author | nyamatongwe <unknown> | 2001-09-02 04:31:46 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-09-02 04:31:46 +0000 |
commit | 0672f964e260eda782b50f0aee14fe7ed4c4b9ac (patch) | |
tree | dd57a2770cafde71a84f8d15511e7e4e7690081a | |
parent | ee01fdd6af5c9c020841a8853dcf79dedc05536f (diff) | |
download | scintilla-mirror-0672f964e260eda782b50f0aee14fe7ed4c4b9ac.tar.gz |
Fixed Borland warning.
-rw-r--r-- | src/LexHTML.cxx | 2 |
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 { |