aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/hnh/util.scm4
-rw-r--r--module/scripts/find-undocumented.scm2
2 files changed, 2 insertions, 4 deletions
diff --git a/module/hnh/util.scm b/module/hnh/util.scm
index ea7c0dd1..4bd06d11 100644
--- a/module/hnh/util.scm
+++ b/module/hnh/util.scm
@@ -142,7 +142,7 @@
(lambda (raw-continue)
(let ((continue
(case-lambda
- (() #f)
+ (() (raw-continue #f))
(args (apply raw-continue args)))))
b1 body ...)))])
<collection>))))
@@ -155,7 +155,7 @@
(call/ec (lambda (raw-continue)
(let ((continue
(case-lambda
- (() #f)
+ (() (raw-continue #f))
(args (apply raw-continue args)))))
b1 body ...))))
<collection>)))))))
diff --git a/module/scripts/find-undocumented.scm b/module/scripts/find-undocumented.scm
index 8c321fc2..499f18d6 100644
--- a/module/scripts/find-undocumented.scm
+++ b/module/scripts/find-undocumented.scm
@@ -130,8 +130,6 @@
(concatenate
(for path in (all-modules-under-directory source-directory)
(when (member path skip-files)
- (continue))
- (define components* (drop (path-split path) (length (path-split source-directory))))
(define name
(map string->symbol
(append (drop-right components* 1)