From: Guillermo J. Rozas Date: Wed, 4 Apr 1990 18:51:37 +0000 (+0000) Subject: Change file-touch to return #t if the file did not exist previously X-Git-Tag: 20090517-FFI~11456 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=d7de67b5aa76ad2af9e9c65952b6170b866351e4;p=mit-scheme.git Change file-touch to return #t if the file did not exist previously and was succesfully created, #f if it existed, and was succesfully modified, and an error string otherwise. --- diff --git a/v7/src/runtime/unxprm.scm b/v7/src/runtime/unxprm.scm index fc80fc1a0..f9e6e5023 100644 --- a/v7/src/runtime/unxprm.scm +++ b/v7/src/runtime/unxprm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unxprm.scm,v 1.7 1990/04/04 18:23:16 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unxprm.scm,v 1.8 1990/04/04 18:51:37 jinx Exp $ Copyright (c) 1988, 1989 Massachusetts Institute of Technology @@ -145,5 +145,5 @@ MIT in each case. |# result (error-irritant/noise #\newline) (error-irritant/noise "within procedure") - (ucode-primitive file-touch))))) - unspecific) \ No newline at end of file + (ucode-primitive file-touch)) + result)))) \ No newline at end of file