diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-09-22 22:41:40 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-09-22 22:41:40 +0000 |
commit | 9882ea199196202be10bcf4bfbfea3669efae421 (patch) | |
tree | 9128a959f5ab93bd4d197165d6b45795d57289b5 /libguile/async.c | |
parent | 19402679360bfd4d2cd1b87d78bbc5687d03f92b (diff) | |
download | guile-9882ea199196202be10bcf4bfbfea3669efae421.tar.gz |
* arbiters.c (prinarb),
async.c (print_async),
debug.c (prindebugobj, prinmemoized),
eval.c (prinprom, prinmacro),
filesys.c (scm_fd_print, scm_dir_print),
kw.c (print_kw),
mallocs.c (prinmalloc),
numbers.c, numbers.h (scm_floprint, scm_bigprint),
smob.h (scm_smobfuns),
srcprop.c (prinsrcprops),
throw.c (prinjb),
unif.c, unif.h (scm_raprin1, rapr1),
variable.c (prin_var): Changed argument `int writing' to
`scm_print_state *pstate'.
Diffstat (limited to 'libguile/async.c')
-rw-r--r-- | libguile/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/async.c b/libguile/async.c index 4776f1137..739b4c29b 100644 --- a/libguile/async.c +++ b/libguile/async.c @@ -302,13 +302,13 @@ scm_deliver_signal (num) #ifdef __STDC__ static int -print_async (SCM exp, SCM port, int writing) +print_async (SCM exp, SCM port, scm_print_state *pstate) #else static int -print_async (exp, port, writing) +print_async (exp, port, pstate) SCM exp; SCM port; - int writing; + scm_print_state *pstate; #endif { scm_gen_puts (scm_regular_string, "#<async ", port); |