aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-08-11 23:34:45 +0000
committernyamatongwe <devnull@localhost>2005-08-11 23:34:45 +0000
commit8e20bff4c3897c6e897c15eddc1687bc134967dd (patch)
treef9c68d486e4da0586338c4dc496df6b4286e023b /src
parent1d3c9f64d9f7ff35576988f04f8597012e7b88d7 (diff)
downloadscintilla-mirror-8e20bff4c3897c6e897c15eddc1687bc134967dd.tar.gz
Bigger buffer for when output is in long paragraphs.
Diffstat (limited to 'src')
-rw-r--r--src/LexOthers.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx
index 662b36308..4f4c1e325 100644
--- a/src/LexOthers.cxx
+++ b/src/LexOthers.cxx
@@ -983,7 +983,7 @@ static void ColouriseErrorListLine(
}
static void ColouriseErrorListDoc(unsigned int startPos, int length, int, WordList *[], Accessor &styler) {
- char lineBuffer[1024];
+ char lineBuffer[10000];
styler.StartAt(startPos);
styler.StartSegment(startPos);
unsigned int linePos = 0;