aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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)