aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2016-01-09 17:01:43 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2016-01-09 17:01:43 -0800
commit313768fe3869da54aadd7317179bd35a44f95de3 (patch)
treef74d7eb04f9ee096133aa0a54357653c8d7c035f
parentcbeff4602e9a7df7acbaf09852461b0890f20fb2 (diff)
downloadopen-axiom-313768fe3869da54aadd7317179bd35a44f95de3.tar.gz
instantiateNiladics\!: Tidy.
-rw-r--r--src/interp/compiler.boot5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot
index 2a3f413e..433d44e7 100644
--- a/src/interp/compiler.boot
+++ b/src/interp/compiler.boot
@@ -2826,8 +2826,9 @@ instantiateNiladics! pf ==
-- Note: Normally, we wouldn't want to touch the definiendum;
-- except that some operators such as 'case' take flags,
-- so we want to solve them if they are types.
- if second(pf) is [.,:.] then
- second(pf).args := instantiateNiladicsInList! second(pf).args
+ definiendum := first pf.args
+ if definiendum is ['case,:.] then
+ third(definiendum) := instantiateNiladics! third definiendum
third(pf) := instantiateNiladicsInList! third pf
fourth(pf) := instantiateNiladics! fourth pf
pf.op is 'SIGNATURE => third(pf) := instantiateNiladicsInList! third pf