Skip to content

Commit

Permalink
Ignore documentation warnings on CCL.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Jul 8, 2024
1 parent c734f2a commit c0b9b18
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion t/core.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,16 @@
(let* ((asdf:*central-registry* (cons tmp-path
asdf:*central-registry*))
(resulting-path (progn (asdf:load-system docs-system-name)
(docs-builder:build docs-system-name)))
(handler-bind ((docs-builder:documentation-has-problems
;; Here we ignore documentation warnings
;; because on CCL we have some problems with them:
#+ccl
#'continue
;; But for other implementations
;; will require for no warnings:
#-ccl
#'identity))
(docs-builder:build docs-system-name))))
(index.html (merge-pathnames
(make-pathname :name "index"
:type "html")
Expand Down

0 comments on commit c0b9b18

Please sign in to comment.