aboutsummaryrefslogtreecommitdiff
path: root/src/interp/compat.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-30 12:10:11 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-30 12:10:11 +0000
commitb1fb4cb58a886484e213bd1235f6de75713950c9 (patch)
tree9081e1cd5af4cc6af281259faed5352035a26dec /src/interp/compat.boot
parente46eacc852aacf74de6d98ed5aad9249f41eabb0 (diff)
downloadopen-axiom-b1fb4cb58a886484e213bd1235f6de75713950c9.tar.gz
more string cleanups
Diffstat (limited to 'src/interp/compat.boot')
-rw-r--r--src/interp/compat.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/compat.boot b/src/interp/compat.boot
index da938060..712037f4 100644
--- a/src/interp/compat.boot
+++ b/src/interp/compat.boot
@@ -40,11 +40,11 @@ namespace BOOT
-- RREAD which takes erroval to return if key is missing
rread(key,rstream,errorval) ==
- if IDENTP key then key := PNAME key
+ if IDENTP key then key := symbolName key
RREAD(key,rstream,errorval)
rwrite(key,val,stream) ==
- if IDENTP key then key := PNAME key
+ if IDENTP key then key := symbolName key
RWRITE(key,val,stream)
-- issuing commands to the operating system