aboutsummaryrefslogtreecommitdiff
path: root/src/interp/intfile.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/intfile.boot')
-rw-r--r--src/interp/intfile.boot10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interp/intfile.boot b/src/interp/intfile.boot
index 5c3790e6..31af759b 100644
--- a/src/interp/intfile.boot
+++ b/src/interp/intfile.boot
@@ -43,17 +43,17 @@ shoeInternFile(fn)==
shoeIntern (s)==
StreamNull s => nil
- f:=CAR s
- # f < 8 => shoeIntern CDR s
- f.0=char " " =>shoeIntern CDR s
+ f:=first s
+ # f < 8 => shoeIntern rest s
+ f.0=char " " =>shoeIntern rest s
a:=INTERN SUBSTRING (f,0,8)
- [b,c]:= shoeStrings CDR s
+ [b,c]:= shoeStrings rest s
SETF(GET (a,"MSGS"),b)
shoeIntern c
shoeStrings (stream)==
StreamNull stream => ['"",stream]
- a:=CAR stream
+ a:=first stream
if a.0 ~= char " "
then ['"",stream]
else