aboutsummaryrefslogtreecommitdiff
path: root/src/interp/compat.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-08-04 13:56:52 +0000
committerdos-reis <gdr@axiomatics.org>2011-08-04 13:56:52 +0000
commit9a593e3b395c1ba0c6036760c12713d7485f8c54 (patch)
treedd8eadbf07dde50ca15d6aa4181c902ad7b09d3c /src/interp/compat.boot
parente77d30ccf1b663aaa6ec1e017fa8e31f3296afeb (diff)
downloadopen-axiom-9a593e3b395c1ba0c6036760c12713d7485f8c54.tar.gz
cleanup
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 db897ff2..6fdd592b 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 := symbolName key
+ if ident? key then key := symbolName key
RREAD(key,rstream,errorval)
rwrite(key,val,stream) ==
- if IDENTP key then key := symbolName key
+ if ident? key then key := symbolName key
RWRITE(key,val,stream)
-- issuing commands to the operating system