parent
6a78beecdf
commit
1005701b8e
|
@ -558,8 +558,15 @@
|
||||||
(not (eq? omit 'all)))
|
(not (eq? omit 'all)))
|
||||||
(filter (lambda (p) (not (member p omit)))
|
(filter (lambda (p) (not (member p omit)))
|
||||||
(map (lambda (s) (if (string? s) (string->path s) s))
|
(map (lambda (s) (if (string? s) (string->path s) s))
|
||||||
(map car (call-info info 'scribblings
|
(map car
|
||||||
(lambda () null) (lambda (x) #f)))))
|
(let ([v (call-info info 'scribblings (lambda () null) void)])
|
||||||
|
;; Ignore ill-formed 'scribblings entries at this level:
|
||||||
|
(if (list? v)
|
||||||
|
(for/list ([i (in-list v)]
|
||||||
|
#:when (and (pair? i)
|
||||||
|
(string? i)))
|
||||||
|
i)
|
||||||
|
null)))))
|
||||||
null)
|
null)
|
||||||
(map (lambda (s) (if (string? s) (string->path s) s))
|
(map (lambda (s) (if (string? s) (string->path s) s))
|
||||||
(call-info info 'compile-include-files (lambda () null) void))))
|
(call-info info 'compile-include-files (lambda () null) void))))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user