diff options
author | nyamatongwe <unknown> | 2002-02-04 09:03:21 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-04 09:03:21 +0000 |
commit | 11506a6aaeb255722ab5930a7aaaaa102f4f4b7b (patch) | |
tree | 0e423f626a66728966ffe4f921a4913643fa805f | |
parent | 2167f1d01c4fd098535e66754939328123ff1b34 (diff) | |
download | scintilla-mirror-11506a6aaeb255722ab5930a7aaaaa102f4f4b7b.tar.gz |
Changed line length limit to 8000 to avoid stack exhaustion.
Changed date of 1.44 release.
-rw-r--r-- | doc/ScintillaHistory.html | 6 | ||||
-rw-r--r-- | doc/index.html | 4 | ||||
-rw-r--r-- | src/Editor.h | 2 |
3 files changed, 8 insertions, 4 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 99df6e10e..5125a4e98 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -116,7 +116,7 @@ </h3> <ul> <li> - Released on 2 February 2002. + Released on 4 February 2002. </li> <li> Crashing bug fixed in Editor::Paint. @@ -140,6 +140,10 @@ Compilation fix for static linking. </li> <li> + Limited maximum line length handled to 8000 characters as previous + value of 16000 was causing stack exhaustion crashes for some. + </li> + <li> When whole document line selected, only the last display line gets the extra selected rectangle at the right hand side rather than every display line. diff --git a/doc/index.html b/doc/index.html index 66492bc7d..15c652bd4 100644 --- a/doc/index.html +++ b/doc/index.html @@ -9,7 +9,7 @@ <meta name="keywords" content="Scintilla, SciTE, Editing Component, Text Editor" /> <meta name="Description" content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." /> - <meta name="Date.Modified" content="20020202" /> + <meta name="Date.Modified" content="20020204" /> <style type="text/css"> .versionlist { color: #FFCC99; @@ -37,7 +37,7 @@ </td> <td width="40%" align="right"> <font color="#FFCC99" size="3"> Release version 1.44<br /> - Site last modified February 2 2002</font> + Site last modified February 4 2002</font> </td> <td width="20%"> 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; |