Fix stupid typo in CALL-WITH-TRUNCATED-OUTPUT-PORT.
authorChris Hanson <org/chris-hanson/cph>
Sat, 26 Jul 2008 07:01:34 +0000 (07:01 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 26 Jul 2008 07:01:34 +0000 (07:01 +0000)
v7/src/runtime/output.scm

index efc089129a4f8639c2c9ce2f90aac565f7ecf098..2db2df0b80b3a6203289ece2741e36f8ed5aca8e 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: output.scm,v 14.43 2008/07/26 05:12:20 cph Exp $
+$Id: output.scm,v 14.44 2008/07/26 07:01:34 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -283,7 +283,7 @@ USA.
   (call-with-current-continuation
    (lambda (k)
      (let ((port (make-port truncated-output-type
-                           (make-tstate limit port k 0))))
+                           (make-tstate port limit k 0))))
        (generator port)
        #f))))