summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-11 00:01:05 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-11 00:01:05 -0800
commitef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00 (patch)
tree9d86a1d612f34001934c116ad9c4b3132b482c45 /ChangeLog
parent656a6d4b2efc283b31d540abf87408a67287bbdb (diff)
downloadtxr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.tar.gz
txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.tar.bz2
txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.zip
* Makefile (OBJS): New object file, combi.o.
* dep.mk: Updated. * eval.c: Removed combination and permutation functions; they now reside in combi.c. (generate): Changed from static to external linkage. * eval.h (generate): Declared. * combi.c: New file. * combi.h: New file. * txr.vim: Regenerated.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 48d91ce2..b5524435 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,23 @@
2014-02-10 Kaz Kylheku <kaz@kylheku.com>
+ * Makefile (OBJS): New object file, combi.o.
+
+ * dep.mk: Updated.
+
+ * eval.c: Removed combination and permutation functions; they
+ now reside in combi.c.
+ (generate): Changed from static to external linkage.
+
+ * eval.h (generate): Declared.
+
+ * combi.c: New file.
+
+ * combi.h: New file.
+
+ * txr.vim: Regenerated.
+
+2014-02-10 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (rcomb_gen_fun_common): Streamlined implementation.
Got rid of stack that is consed up on each call.