aboutsummaryrefslogtreecommitdiff
path: root/src/boot/ast.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-29 02:28:09 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-29 02:28:09 +0000
commitc220d4d9a44a3828d96e55b1b1a0756d3acea9fe (patch)
tree095a41566dc0299676d32d7c9068d9b0e392652d /src/boot/ast.boot
parent05f1dbf1e8564c316a4e0ed7146b4991162f8875 (diff)
downloadopen-axiom-c220d4d9a44a3828d96e55b1b1a0756d3acea9fe.tar.gz
* interp/sys-utility.boot (displayTextFile): New.
* interp/i-syscmd.boot (summary): Use it. (copyright): Likewise. * algebra/net.spad.pamphlet: Replace closeFile with closeStream. * boot/translator.boot: Likewise. * interp/as.boot: Likewise. * interp/ax.boot: Likewise. * interp/br-saturn.boot: Likewise. * interp/br-search.boot: Likewise.
Diffstat (limited to 'src/boot/ast.boot')
-rw-r--r--src/boot/ast.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/ast.boot b/src/boot/ast.boot
index 6327d8fa..3201d249 100644
--- a/src/boot/ast.boot
+++ b/src/boot/ast.boot
@@ -104,7 +104,7 @@ structure %Ast ==
%Leave(%Ast) -- leave x
%Throw(%Ast) -- throw OutOfRange 3
%Catch(%Signature,%Ast) -- catch(x: OutOfRange) => print x
- %Finally(%Ast) -- finally closeFile f
+ %Finally(%Ast) -- finally closeStream f
%Try(%Ast,%Sequence) -- try x / y catch DivisionByZero
%Where(%Ast,%Sequence) -- e where f x == y
%Structure(%Ast,%Sequence) -- structure Foo == ...