diff options
| -rw-r--r-- | src/EditView.cxx | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/src/EditView.cxx b/src/EditView.cxx index a26412954..ffeb20648 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -425,10 +425,6 @@ void EditView::LayoutLine(const EditModel &model, Sci::Line line, Surface *surfa  		model.pdoc->GetStyleRange(ll->styles.get(), posLineStart, lineLength);  		const int numCharsBeforeEOL = static_cast<int>(model.pdoc->LineEnd(line) - posLineStart);  		const int numCharsInLine = (vstyle.viewEOL) ? lineLength : numCharsBeforeEOL; -		for (Sci::Position styleInLine = 0; styleInLine < numCharsInLine; styleInLine++) { -			const unsigned char styleByte = ll->styles[styleInLine]; -			ll->styles[styleInLine] = styleByte; -		}  		const unsigned char styleByteLast = (lineLength > 0) ? ll->styles[lineLength - 1] : 0;  		if (vstyle.someStylesForceCase) {  			for (int charInLine = 0; charInLine<lineLength; charInLine++) { | 
