aboutsummaryrefslogtreecommitdiff
path: root/src/interp/newfort.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-09-26 13:49:18 +0000
committerdos-reis <gdr@axiomatics.org>2009-09-26 13:49:18 +0000
commit91bd7571dc0baf8d17047d553e4616dd587c0ffb (patch)
tree2e2a2eb23ff2cb76b6eb3ae763a480ac1f0078ad /src/interp/newfort.boot
parent868f1d56a5bcd7d712855e98085e0e15d32a3264 (diff)
downloadopen-axiom-91bd7571dc0baf8d17047d553e4616dd587c0ffb.tar.gz
* interp/: More cleanup.
Diffstat (limited to 'src/interp/newfort.boot')
-rw-r--r--src/interp/newfort.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/newfort.boot b/src/interp/newfort.boot
index 909302a7..81301b6d 100644
--- a/src/interp/newfort.boot
+++ b/src/interp/newfort.boot
@@ -199,8 +199,8 @@ beenHere(e,n) ==
-- using COPY-TREE : RPLAC does not smash $fortCsList
-- which led to inconsistencies in assignment of temp. vars.
$fortCsList := COPY_-TREE [['"=",var,e],:$fortCsList]
- loc := CAR exprStk
- fun := CAR n.3
+ loc := first exprStk
+ fun := first n.3
fun = 'CAR =>
RPLACA(loc,var)
fun = 'CDR =>
@@ -713,7 +713,7 @@ fortFormatCharacterTypes(names) ==
genuineArrays := []
for u in names repeat
ATOM u => sortedByLength := insertEntry(0,u,sortedByLength)
- #u=2 => sortedByLength := insertEntry(second u,CAR u,sortedByLength)
+ #u=2 => sortedByLength := insertEntry(second u,first u,sortedByLength)
genuineArrays := [u,:genuineArrays]
for u in sortedByLength repeat
fortFormatTypes1(mkCharName car u, [STRINGIMAGE(s) for s in cdr(u)]) where