From 28cdf918c1ea6cc01dd172a65af099b70f8efc0e Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Sat, 21 Mar 2009 07:14:23 +0000 Subject: [PATCH] Fix same typo in OPEN-EXCLUSIVE-BINARY-OUTPUT-FILE. --- v7/src/runtime/fileio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/fileio.scm b/v7/src/runtime/fileio.scm index e88493d81..720d1333d 100644 --- a/v7/src/runtime/fileio.scm +++ b/v7/src/runtime/fileio.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: fileio.scm,v 1.40 2009/03/21 07:13:43 riastradh Exp $ +$Id: fileio.scm,v 1.41 2009/03/21 07:14:23 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -159,7 +159,7 @@ USA. (define (open-exclusive-binary-output-file filename) (let* ((pathname (merge-pathnames filename)) (channel (file-open-exclusive-output-channel (->namestring pathname))) - (port (make-generic-i/o-port channel #f output-file-type pathname))) + (port (make-generic-i/o-port #f channel output-file-type pathname))) (set-channel-port! channel port) (port/set-coding port 'BINARY) (port/set-line-ending port 'BINARY) -- 2.25.1