diff options
Diffstat (limited to 'strport.scm')
-rw-r--r-- | strport.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/strport.scm b/strport.scm index 197d9a0..9d33363 100644 --- a/strport.scm +++ b/strport.scm @@ -8,7 +8,7 @@ ;1. Any copy made of this software must include this copyright notice ;in full. ; -;2. I have made no warrantee or representation that the operation of +;2. I have made no warranty or representation that the operation of ;this software will be error-free, and I am under no obligation to ;provide any services, by way of maintenance, update, or otherwise. ; @@ -21,7 +21,7 @@ ;delete-file defined in your .init file. tmpnam generates ;temp file names. delete-file may be defined to be a dummy ;procedure that does nothing. - +;@ (define (call-with-output-string f) (let ((tmpf (tmpnam))) (call-with-output-file tmpf f) @@ -40,7 +40,7 @@ (loop (+ i 1)))))))) (delete-file tmpf) s))) - +;@ (define (call-with-input-string s f) (let ((tmpf (tmpnam))) (call-with-output-file tmpf |