diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-03 07:57:14 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-03 07:57:14 -0700 |
commit | 57c9049794f108fe7ba593a5ed29511bdeb8314c (patch) | |
tree | e4939889a701c88ba5268298f2a9da9876198e49 /lib.c | |
parent | 8cbd3cde98df5f20794ec055df3fedb988d5c1ce (diff) | |
download | txr-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.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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))) { |