aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-12-19 13:07:48 +0000
committerdos-reis <gdr@axiomatics.org>2007-12-19 13:07:48 +0000
commitd78b5539ffe42f70b9a028d88821b52be1deb43e (patch)
tree107a5c5806106aa99136d3a18599edb58472a943 /src
parentbaa9b5b69f1566ed6ad37d15b4cf8dea01d7e8ed (diff)
downloadopen-axiom-d78b5539ffe42f70b9a028d88821b52be1deb43e.tar.gz
* nruncomp.boot (deltaTran): Fix thinko; handle the case where the
domain of computation is the add form.
Diffstat (limited to 'src')
-rw-r--r--src/interp/ChangeLog5
-rw-r--r--src/interp/nruncomp.boot1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/interp/ChangeLog b/src/interp/ChangeLog
index 21898b04..ca981ad1 100644
--- a/src/interp/ChangeLog
+++ b/src/interp/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-19 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * nruncomp.boot (deltaTran): Fix thinko; handle the case where the
+ domain of computation is the add form.
+
2007-12-17 Gabriel Dos Reis <gdr@cs.tamu.edu>
* nruncomp.boot: Remove dead code.
diff --git a/src/interp/nruncomp.boot b/src/interp/nruncomp.boot
index e5deec1b..02ce4bd1 100644
--- a/src/interp/nruncomp.boot
+++ b/src/interp/nruncomp.boot
@@ -90,6 +90,7 @@ deltaTran(item,compItem) ==
sig := substitute('$,dc,substitute("$$",'$,sig))
dcCode :=
dc = '$ => 0
+ dc = $NRTaddForm => 5
NRTassocIndex dc or keyedSystemError("S2NR0004",[dc])
formalSig:= SUBLISLIS($FormalMapVariableList,$formalArgList,sig)
kindFlag:= (kind = 'CONST => 'CONST; nil)