diff options
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9481,9 +9481,9 @@ static void out_quasi_str(val args, val out, struct strm_ctx *ctx) } if (need_brace) put_char(chr('}'), out); - } else if (sym == expr_s) { + } else { put_char(chr('@'), out); - obj_print_impl(rest(elem), out, nil, ctx); + obj_print_impl(elem, out, nil, ctx); } } else { obj_print_impl(elem, out, nil, ctx); |