summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/hash.c b/hash.c
index 2bf527b9..1aaaa375 100644
--- a/hash.c
+++ b/hash.c
@@ -494,12 +494,20 @@ static void hash_print_op(val hash, val out, val pretty, struct strm_ctx *ctx)
put_string(lit(")"), out);
{
val iter = hash_begin(hash), cell;
+ cnum max_len = ctx->strm->max_length;
+ cnum max_count = max_len;
+
while ((cell = hash_next(iter))) {
val key = us_car(cell);
val value = us_cdr(cell);
if (width_check(out, chr(' ')))
force_br = 1;
+ if (max_len && --max_count < 0) {
+ put_string(lit("..."), out);
+ break;
+ }
+
put_string(lit("("), out);
obj_print_impl(key, out, pretty, ctx);