summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f3da9b17..85ffdb77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2013-12-02 Kaz Kylheku <kaz@kylheku.com>
+
+ debug_check calls are the culprit triggering lookahead
+ in lazy lists. Changing the semantics of the data argument
+ so that it can just be the list.
+
+ * debug.c (debug): If data is a cons, then replace it with
+ the first item.
+
+ * match.c (match_files): Pass c.data to debug_check, rather
+ than the value of if2(consp(c.data), car(c.data)) which accesses
+ car(c.data) whether or not we are debugging.
+ (match_fun): Likewise.
+
2013-12-01 Kaz Kylheku <kaz@kylheku.com>
Steps toward fixing an issue: lazy list readahead.