lib/core: Push rope maxlen to 512 instead of 64
authorLucas Bajolet <r4pass@hotmail.com>
Wed, 29 Jun 2016 17:20:34 +0000 (13:20 -0400)
committerLucas Bajolet <r4pass@hotmail.com>
Wed, 29 Jun 2016 17:20:34 +0000 (13:20 -0400)
Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

lib/core/text/ropes.nit

index f472d96..dc7d49d 100644 (file)
@@ -58,7 +58,7 @@ intrude import flat
 #
 # Its purpose is to limit the depth of the `Rope` (this
 # improves performance when accessing/iterating).
-fun maxlen: Int do return 64
+fun maxlen: Int do return 512
 
 # String using a tree-based representation with leaves as `FlatStrings`
 private abstract class Rope