aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-object.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/i-object.boot
parente77d30ccf1b663aaa6ec1e017fa8e31f3296afeb (diff)
downloadopen-axiom-9a593e3b395c1ba0c6036760c12713d7485f8c54.tar.gz
cleanup
Diffstat (limited to 'src/interp/i-object.boot')
-rw-r--r--src/interp/i-object.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/i-object.boot b/src/interp/i-object.boot
index b8560f59..c2bf03ff 100644
--- a/src/interp/i-object.boot
+++ b/src/interp/i-object.boot
@@ -116,7 +116,7 @@ getValueNormalForm obj ==
atom val => val
[op,:argl] := val
op is "WRAPPED" => MKQ argl
- IDENTP op and isConstructorName op =>
+ ident? op and isConstructorName op =>
isConceptualCategory objMode obj => instantiationNormalForm(op,argl)
MKQ val
-- This is not the final value of `obj', rather something that needs
@@ -127,7 +127,7 @@ instantiationNormalForm(op,argl) ==
[op,:[normalVal for arg in argl]] where normalVal() ==
atom arg => arg
[h,:t] := arg
- IDENTP h and isConstructorName h => instantiationNormalForm(h,t)
+ ident? h and isConstructorName h => instantiationNormalForm(h,t)
MKQ arg