diff options
author | Araq <rumpf_a@web.de> | 2011-05-13 19:14:49 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-05-13 19:14:49 +0200 |
commit | f45967537f3696b20a4a92b2159c8de11913b556 (patch) | |
tree | 8b041099b93135fcee0ec04c9b1cc0e7931d3110 /lib/system/repr.nim | |
parent | f94941964d8621c452082b47b5810f231edabfa3 (diff) | |
download | Nim-f45967537f3696b20a4a92b2159c8de11913b556.tar.gz |
loop unrolled for stack marking
Diffstat (limited to 'lib/system/repr.nim')
-rwxr-xr-x | lib/system/repr.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/repr.nim b/lib/system/repr.nim index 87588421f..9464ff3d8 100755 --- a/lib/system/repr.nim +++ b/lib/system/repr.nim @@ -111,7 +111,7 @@ type TReprClosure {.final.} = object # we cannot use a global variable here # as this wouldn't be thread-safe marked: TCellSet - recdepth: int # do not recurse endless + recdepth: int # do not recurse endlessly indent: int # indentation when not defined(useNimRtl): |