From: Taylor R. Campbell Date: Sat, 21 Mar 2009 07:13:43 +0000 (+0000) Subject: Fix typo in definition of OPEN-EXCLUSIVE-OUTPUT-FILE. X-Git-Tag: 20090517-FFI~51 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=fdc1e08b9980d78764472bb4ffa802117dde56d3;p=mit-scheme.git Fix typo in definition of OPEN-EXCLUSIVE-OUTPUT-FILE. --- diff --git a/v7/src/runtime/fileio.scm b/v7/src/runtime/fileio.scm index 5cb965568..e88493d81 100644 --- a/v7/src/runtime/fileio.scm +++ b/v7/src/runtime/fileio.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: fileio.scm,v 1.39 2009/03/21 07:09:09 riastradh Exp $ +$Id: fileio.scm,v 1.40 2009/03/21 07:13:43 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -121,7 +121,7 @@ USA. (define (open-exclusive-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-line-ending port (file-line-ending pathname)) port))