summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-03-13 06:58:26 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-03-13 06:58:26 -0700
commitbb0476aa11a6f4f24c16ddebcaf3917764655f45 (patch)
tree682b02af4c42be26a8537e431eb8cbeac110ed40 /struct.c
parent79c1412d63835304c6c219ab985ee32edf54d851 (diff)
downloadtxr-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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/struct.c b/struct.c
index 91e6807c..af2bdaaf 100644
--- a/struct.c
+++ b/struct.c
@@ -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;
}
}