summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-03 07:57:14 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-03 07:57:14 -0700
commit57c9049794f108fe7ba593a5ed29511bdeb8314c (patch)
treee4939889a701c88ba5268298f2a9da9876198e49 /lib.c
parent8cbd3cde98df5f20794ec055df3fedb988d5c1ce (diff)
downloadtxr-57c9049794f108fe7ba593a5ed29511bdeb8314c.tar.gz
txr-57c9049794f108fe7ba593a5ed29511bdeb8314c.tar.bz2
txr-57c9049794f108fe7ba593a5ed29511bdeb8314c.zip
lib: oversight, neglected struct literal printing.
* lib.c (obj_print_impl): print (sys:struct-lit ...) syntax as #S(...).
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index a34b16fa..ae78b147 100644
--- a/lib.c
+++ b/lib.c
@@ -12936,6 +12936,9 @@ val obj_print_impl(val obj, val out, val pretty, struct strm_ctx *ctx)
} else if (sym == hash_lit_s) {
put_string(lit("#H"), out);
obj_print_impl(rest(obj), out, pretty, ctx);
+ } else if (sym == struct_lit_s) {
+ put_string(lit("#S"), out);
+ obj_print_impl(rest(obj), out, pretty, ctx);
} else if (sym == json_s && have_args &&
consp(cdr(args)) && nilp(cddr(args)))
{