diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-06 10:04:30 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-06 10:04:30 -0700 |
commit | 0c1993e627e4efdb6a6b7de6682cac4390db9c7b (patch) | |
tree | aa835e964e22727c793a568fc4cfaa55fbeb4b22 | |
parent | c9cce94780d7c46f7efb7b685f30d27ce647cc2f (diff) | |
download | txr-0c1993e627e4efdb6a6b7de6682cac4390db9c7b.tar.gz txr-0c1993e627e4efdb6a6b7de6682cac4390db9c7b.tar.bz2 txr-0c1993e627e4efdb6a6b7de6682cac4390db9c7b.zip |
ffi: add space in ffi-call-desc's printed rep.
* ffi.c (ffi_call_desc_print_op): Print a space between the
class symbol and name so they are not run together.
-rw-r--r-- | ffi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4673,7 +4673,7 @@ static void ffi_call_desc_print_op(val obj, val out, struct txr_ffi_call_desc *tfcd = ffi_call_desc(obj); put_string(lit("#<"), out); obj_print_impl(obj->co.cls, out, pretty, ctx); - format(out, lit("~s ~s ~!~s>"), tfcd->name, tfcd->rettype, + format(out, lit(" ~s ~s ~!~s>"), tfcd->name, tfcd->rettype, tfcd->argtypes, nao); } |