diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-03-13 06:58:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-03-13 06:58:26 -0700 |
commit | bb0476aa11a6f4f24c16ddebcaf3917764655f45 (patch) | |
tree | 682b02af4c42be26a8537e431eb8cbeac110ed40 /struct.c | |
parent | 79c1412d63835304c6c219ab985ee32edf54d851 (diff) | |
download | txr-bb0476aa11a6f4f24c16ddebcaf3917764655f45.tar.gz txr-bb0476aa11a6f4f24c16ddebcaf3917764655f45.tar.bz2 txr-bb0476aa11a6f4f24c16ddebcaf3917764655f45.zip |
Print method can return : to decline printing.
* struct.c (struct_inst_print): Check return value of print
method call. If it is the colon keyword, then do not return
but rather continue to the regular struct printing code.
* txr.1: Documented.
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1316,9 +1316,8 @@ static void struct_inst_print(val obj, val out, val pretty, if (!nullocp(ptr)) { if (compat) funcall2(deref(ptr), obj, out); - else - funcall3(deref(ptr), obj, out, pretty); - return; + else if (funcall3(deref(ptr), obj, out, pretty) != colon_k) + return; } } |