* Makefile.in: Rebuilt.
[bpt/guile.git] / libguile / arbiters.c
index ab1b703..a8788a7 100644 (file)
@@ -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;
 }