aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-09-23 22:19:27 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-09-23 22:23:47 +0200
commite6d0c03397915259386b11e02da4e7ed2f86f0a8 (patch)
treebaa0c14878285683972740d42ad7deb68dcd50ec
parentCleanup in module-{dependants,imports}. (diff)
downloadcalp-e6d0c03397915259386b11e02da4e7ed2f86f0a8.tar.gz
calp-e6d0c03397915259386b11e02da4e7ed2f86f0a8.tar.xz
Change NOTE to TODO.
-rw-r--r--module/hnh/util.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/hnh/util.scm b/module/hnh/util.scm
index 3a2621d1..bd38a445 100644
--- a/module/hnh/util.scm
+++ b/module/hnh/util.scm
@@ -326,7 +326,9 @@
(for value in lst
(let ((key (proc value)))
(hash-set! h key (cons value (hash-ref h key '())))))
- ;; NOTE changing this list to cons allows the output to work with assq-merge.
+ ;; TODO change this 'list' to 'cons'.
+ ;; It will give a "proper" alist, and also allows the output to work
+ ;; with assq-merge
(hash-map->list list h)))
;; (split-by '(0 1 2 3 4 2 5 6) 2)