aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-09-07 22:38:03 +0000
committerdos-reis <gdr@axiomatics.org>2011-09-07 22:38:03 +0000
commit6e67d369c25e19452a8a76a3864a63c5860e7cd3 (patch)
treea989ebee7f33a1998bd54372ee2a5f5c2bbcdb94 /src/interp/g-util.boot
parent88c6450a9068d951752e06f5ee40d63de1e95fd8 (diff)
downloadopen-axiom-6e67d369c25e19452a8a76a3864a63c5860e7cd3.tar.gz
* interp/lisplib.boot (finalizeLisplib): Finalize documentaion
only if not bootstrapping. (isFunctor): Tidy. * interp/g-util.boot (superType): Tidy. * interp/database.boot (getDualSignature): Rename from getDualSignatureFromDB. Adjust callers. * interp/c-util.boot (isKnownCategory): Remove. (diagnoseUnknownType): Use isCategoryForm. * interp/bootlex.lisp (GET-INTEGER-IN-RADIX): Use SPAD_SYNTAX_ERROR. * interp/metalex.lisp (GET-STRING-TOKEN): Likewise. * interp/parsing.lisp (MUST): Likewise. * algebra/boolean.spad.pamphlet (Refrence) [coerce]: Bypass conversion to Identifier. * algebra/domain.spad.pamphlet (ContructorKind): Tidy.
Diffstat (limited to 'src/interp/g-util.boot')
-rw-r--r--src/interp/g-util.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index c1e8e281..6b76c32e 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -119,9 +119,9 @@ superType: %Mode -> %Maybe %Mode
superType dom ==
dom = "$" => superType $functorForm
dom isnt [ctor,:args] => nil
- [super,.] :=
- (db := constructorDB ctor) and dbBeingDefined? db =>
- dbSuperDomain db or return nil
+ [super,.] :=
+ db := constructorDB ctor or return nil
+ dbBeingDefined? db => dbSuperDomain db or return nil
getSuperDomainFromDB ctor or return nil
sublisFormal(args,super,$AtVariables)