From ad54f9d10165be47b34e6e09d009d115e3808f49 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 6 Jan 2017 02:13:43 -0800 Subject: Missing space in hash printed rep. * hash.c (hash_print_op): For hash tables that have both weak keys and weak values, print a space between the keywords. --- hash.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hash.c b/hash.c index a786a9c6..44848830 100644 --- a/hash.c +++ b/hash.c @@ -388,6 +388,7 @@ static void hash_print_op(val hash, val out, val pretty, struct strm_ctx *ctx) switch (h->flags) { case hash_weak_both: obj_print_impl(weak_keys_k, out, pretty, ctx); + put_char(chr(' '), out); /* fallthrough */ case hash_weak_vals: obj_print_impl(weak_vals_k, out, pretty, ctx); -- cgit v1.2.3