mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* 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'.
This commit is contained in:
parent
1940267936
commit
9882ea1991
9 changed files with 65 additions and 60 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue