diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-24 11:12:47 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-24 11:12:47 -0800 |
commit | 87d89d601fba2dd1acc20e723b922da0e7210f1b (patch) | |
tree | ffe52f6b62eef66882180d434c0872ca9a18b82c | |
parent | e82099ecc159c79f184a15e253a728a6e5e3c7ec (diff) | |
download | txr-87d89d601fba2dd1acc20e723b922da0e7210f1b.tar.gz txr-87d89d601fba2dd1acc20e723b922da0e7210f1b.tar.bz2 txr-87d89d601fba2dd1acc20e723b922da0e7210f1b.zip |
printer: do not render @(rcons ...) in .. notation.
This fixes the following print-read consistency issue.
Both of these objects print as @a..@b.
1> '@(rcons a b)
@a..b
2> '(rcons @a b)
@a..b
We want only the second case. After the this fix:
1> '(rcons @a b)
@a..b
2> '@(rcons a b)
@(rcons a b)
* lib.c (obj_print_impl): In the sys:expr case, we check
whether the head of the argument is rcons. If so, we adjust a
few local variables and branch directly to the generic list
case via goto to print the argument as (rcons ...) without
conversion to dotdot range notation.
-rw-r--r-- | lib.c | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -12383,8 +12383,17 @@ val obj_print_impl(val obj, val out, val pretty, struct strm_ctx *ctx) put_char(chr('@'), out); obj_print_impl(arg, out, pretty, ctx); } else if (sym == expr_s && two_elem && consp(arg)) { + val inarg = car(arg); put_char(chr('@'), out); - obj_print_impl(arg, out, pretty, ctx); + if (inarg != rcons_s) { + obj_print_impl(arg, out, pretty, ctx); + } else { + obj = arg; + sym = inarg; + args = cdr(obj); + arg = car(obj); + goto list; + } } else if (sym == rcons_s && have_args && consp(cdr(args)) && !(cddr(args))) { @@ -12440,7 +12449,7 @@ val obj_print_impl(val obj, val out, val pretty, struct strm_ctx *ctx) args = cdr(args); } put_char(chr('`'), out); - } else { + } else list: { val iter; val closepar = chr(')'); val indent = zero; |