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 | 662d19a6e7fc9dad3ed7eafe50215028f65a456d (patch) | |
tree | aa835e964e22727c793a568fc4cfaa55fbeb4b22 /ffi.c | |
parent | 266097d184a48385fc44f8c5c9a4bc7ba03b6294 (diff) | |
download | txr-662d19a6e7fc9dad3ed7eafe50215028f65a456d.tar.gz txr-662d19a6e7fc9dad3ed7eafe50215028f65a456d.tar.bz2 txr-662d19a6e7fc9dad3ed7eafe50215028f65a456d.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.
Diffstat (limited to 'ffi.c')
-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); } |