aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-10-02 03:34:18 +0000
committerdos-reis <gdr@axiomatics.org>2008-10-02 03:34:18 +0000
commit6d8d9ff0d92a31b78b03b669b5ad99ef0b2715f4 (patch)
tree3cbc7ea6690bced2ac4317a76ecf859e1dc300a2 /src/interp/sys-utility.boot
parent481e052609b1cbc9bfbc26bd35ffe99c937b6425 (diff)
downloadopen-axiom-6d8d9ff0d92a31b78b03b669b5ad99ef0b2715f4.tar.gz
* interp/i-spec1.boot (upcase): Tidy.
* interp/i-spec2.boot (evalIsntPredicate): Likewise. * interp/sys-utility.boot (existingFile?): Likewise.
Diffstat (limited to 'src/interp/sys-utility.boot')
-rw-r--r--src/interp/sys-utility.boot3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index 441d356e..20e84c18 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -172,7 +172,8 @@ makeAbsoluteFilename name ==
++ returns true if `file' exists as a pathname.
existingFile? file ==
- PROBE_-FILE file
+ PROBE_-FILE file => true
+ false
++ original version returned 0 on success, and 1 on failure
++ ??? fix that to return -1 on failure.