aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-05-15 23:07:19 +0000
committerdos-reis <gdr@axiomatics.org>2013-05-15 23:07:19 +0000
commit91dd5221505a28465d5407dbcf885cc1688654ea (patch)
tree64707e949c15d5b7df748e5abff1381b64777c9b /src
parent36ccd718795486dcab9e5004bd14fb82b595c1eb (diff)
downloadopen-axiom-91dd5221505a28465d5407dbcf885cc1688654ea.tar.gz
* interp/compiler.boot (comp2): Don't test for $bootStrapMode.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/interp/compiler.boot3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b8caf28d..4ffb18ae 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
2013-05-15 Gabriel Dos Reis <gdr@integrable-solutions.net>
+ * interp/compiler.boot (comp2): Don't test for $bootStrapMode.
+
+2013-05-15 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
* interp/daase.lisp (dbDocumentation): New accessor.
2013-05-15 Gabriel Dos Reis <gdr@integrable-solutions.net>
diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot
index 631e9242..3e951499 100644
--- a/src/interp/compiler.boot
+++ b/src/interp/compiler.boot
@@ -161,9 +161,8 @@ comp2(x,m,e) ==
[y,m',e]:= comp3(x,m,e) or return nil
--if cons? y and isDomainForm(y,e) then e := addDomain(x,e)
--line commented out to prevent adding derived domain forms
- m~=m' and ($bootStrapMode or isDomainForm(m',e))=>[y,m',addDomain(m',e)]
+ m~=m' and isDomainForm(m',e) => [y,m',addDomain(m',e)]
--isDomainForm test needed to prevent error while compiling Ring
- --$bootStrapMode-test necessary for compiling Ring in $bootStrapMode
[y,m',e]
comp3(x,m,$e) ==