diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-05-05 23:24:19 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-05-05 23:24:19 -0700 |
commit | e25f2c548e36eb162a64b04a4de62a803f1fe132 (patch) | |
tree | b7c347ed40ad7da9a2f95dca8ee1161bb9db8bc0 /lib.c | |
parent | f7b1729c070b1264fbe0c05d9e734d0c565bf64e (diff) | |
download | txr-e25f2c548e36eb162a64b04a4de62a803f1fe132.tar.gz txr-e25f2c548e36eb162a64b04a4de62a803f1fe132.tar.bz2 txr-e25f2c548e36eb162a64b04a4de62a803f1fe132.zip |
Fix broken quasilist print notation.
* lib.c (obj_print_impl): Remove spurious output statement
from quasi word list literal printing code. The spurious
output completely ruins the printed representation.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -10089,7 +10089,6 @@ val obj_print_impl(val obj, val out, val pretty, struct strm_ctx *ctx) out_quasi_str(car(args), out, ctx); args = cdr(args); } - out_quasi_str(cdr(obj), out, ctx); put_char(chr('`'), out); } else { val iter; |