diff options
Diffstat (limited to 'libguile/arbiters.c')
-rw-r--r-- | libguile/arbiters.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/arbiters.c b/libguile/arbiters.c index ab1b70386..a8788a715 100644 --- a/libguile/arbiters.c +++ b/libguile/arbiters.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996, 1997 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -63,11 +63,11 @@ prinarb (exp, port, pstate) SCM port; scm_print_state *pstate; { - scm_gen_puts (scm_regular_string, "#<arbiter ", port); + scm_puts ("#<arbiter ", port); if (SCM_CAR (exp) & (1L << 16)) - scm_gen_puts (scm_regular_string, "locked ", port); + scm_puts ("locked ", port); scm_iprin1 (SCM_CDR (exp), port, pstate); - scm_gen_putc ('>', port); + scm_putc ('>', port); return !0; } |