#| -*-Scheme-*-
-$Id: stringio.scm,v 14.5 2008/07/31 05:23:39 cph Exp $
+$Id: stringio.scm,v 14.6 2009/02/04 16:00:45 savannah-arthur Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(EXTRACT-OUTPUT ,extract-output)
(EXTRACT-OUTPUT! ,extract-output!)
(OUTPUT-COLUMN ,string-out/output-column)
+ (POSITION ,string-out/position)
(WRITE-SELF ,string-out/write-self))
#f))
(define (string-out/output-column port)
(ostate-column (port/state port)))
+(define (string-out/position port)
+ (ostate-index (port/state port)))
+
(define (string-out/write-self port output-port)
port
(write-string " to string" output-port))