From 016a1ed817bb813c343a9adc590071ad64bbb41c Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sat, 27 Sep 2008 13:47:31 -0500 Subject: [PATCH] Fix usability issue found by prunedtree --- basis/prettyprint/prettyprint.factor | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/basis/prettyprint/prettyprint.factor b/basis/prettyprint/prettyprint.factor index 149ecde447..d41a68f0c4 100755 --- a/basis/prettyprint/prettyprint.factor +++ b/basis/prettyprint/prettyprint.factor @@ -123,7 +123,11 @@ PRIVATE> : callstack. ( callstack -- ) callstack>array 2 [ remove-breakpoints - 3 nesting-limit [ . ] with-variable + [ + 3 nesting-limit set + 100 length-limit set + . + ] with-scope ] assoc-each ; : .c ( -- ) callstack callstack. ;