diff options
| author | nyamatongwe <unknown> | 2007-06-02 05:52:09 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2007-06-02 05:52:09 +0000 | 
| commit | d3894b8d3d1f1421acecd89fde81e21627552075 (patch) | |
| tree | d4d1c49653b0e4f03f4df4e640e1bff5b2cba7e9 /src/PositionCache.h | |
| parent | 284a7cde23d26ccc5c5b75aaa9c1e69e659a4adc (diff) | |
| download | scintilla-mirror-d3894b8d3d1f1421acecd89fde81e21627552075.tar.gz | |
Increased segmentation parameters to more reasonable values.
Diffstat (limited to 'src/PositionCache.h')
| -rw-r--r-- | src/PositionCache.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/PositionCache.h b/src/PositionCache.h index fc261fbbc..b69956d2b 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -112,9 +112,9 @@ public:  class BreakFinder {  	// If a whole run is longer than lengthStartSubdivision then subdivide  	// into smaller runs at spaces or punctuation. -	enum { lengthStartSubdivision = 10 }; +	enum { lengthStartSubdivision = 300 };  	// Try to make each subdivided run lengthEachSubdivision or shorter. -	enum { lengthEachSubdivision = 5 }; +	enum { lengthEachSubdivision = 100 };  	LineLayout *ll;  	int lineStart;  	int lineEnd; | 
