mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-08 05:27:35 +02:00
Fixing bug in package-docs on trivial docs.
This commit is contained in:
parent
7cea27ec20
commit
92e2f16c41
1 changed files with 2 additions and 1 deletions
|
@ -349,7 +349,8 @@
|
|||
(let ((lib-name (library-file-name lib))
|
||||
(docs (extract-module-file-docs lib #f)))
|
||||
(and (pair? docs)
|
||||
(not (and (= 1 (length docs)) (eq? 'subsection (caar docs))))
|
||||
(not (and (= 1 (length docs)) (pair? (car docs))
|
||||
(eq? 'subsection (caar docs))))
|
||||
`(inline
|
||||
,(string-append (library-name->path cfg lib-name) ".html")
|
||||
,(call-with-output-string
|
||||
|
|
Loading…
Add table
Reference in a new issue