diff options
author | nyamatongwe <devnull@localhost> | 2001-09-02 04:31:46 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-09-02 04:31:46 +0000 |
commit | 1b2bc2876b9e9f2fff8ae3583a1200499dd364ca (patch) | |
tree | dd57a2770cafde71a84f8d15511e7e4e7690081a /src/LexHTML.cxx | |
parent | 7a0aed746d9b220a1c445135a7e2118c3f8eb75a (diff) | |
download | scintilla-mirror-1b2bc2876b9e9f2fff8ae3583a1200499dd364ca.tar.gz |
Fixed Borland warning.
Diffstat (limited to 'src/LexHTML.cxx')
-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 { |