aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-07-29 04:28:47 +0000
committernyamatongwe <devnull@localhost>2002-07-29 04:28:47 +0000
commitb4bc8ecda212e3b8700422963f888f9c71b5ca13 (patch)
tree9460267b34862f15fb957be6b256d69b32d0a46c
parentce1b5500a934eae44ad4ebab641981d25feb6e78 (diff)
downloadscintilla-mirror-b4bc8ecda212e3b8700422963f888f9c71b5ca13.tar.gz
Avoid Borland warning.
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 0a5fb2d66..faba66ef5 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1544,7 +1544,7 @@ void Editor::LayoutLine(int line, Surface *surface, ViewStyle &vstyle, LineLayou
int numCharsInLine = 0;
// See if chars, styles, indicators, are all the same
bool allSame = true;
- char styleByte = 0;
+ char styleByte;
int styleMask = pdoc->stylingBitsMask;
// Check base line layout
for (int charInDoc = posLineStart; allSame && (charInDoc < posLineEnd); charInDoc++) {