aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-02-04 09:03:21 +0000
committernyamatongwe <devnull@localhost>2002-02-04 09:03:21 +0000
commit8afa79e790ecde96d1ddd00349ef806577c9f25c (patch)
tree0e423f626a66728966ffe4f921a4913643fa805f /src
parent4b62baf85e53ef021ab8c5000b929622f0dddee5 (diff)
downloadscintilla-mirror-8afa79e790ecde96d1ddd00349ef806577c9f25c.tar.gz
Changed line length limit to 8000 to avoid stack exhaustion.rel-1-44
Changed date of 1.44 release.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 036d7e23d..ec66629f6 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -36,7 +36,7 @@ public:
class LineLayout {
public:
/// Drawing is only performed for @a maxLineLength characters on each line.
- enum {maxLineLength = 16000};
+ enum {maxLineLength = 8000};
int numCharsInLine;
int xHighlightGuide;
bool highlightColumn;