Skip to content

Commit

Permalink
Fix CSS class logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
gigamonkey committed Jan 27, 2012
1 parent e2d2a35 commit 4554c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifest.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ a true Common Lisp while still working in Allegro's mlisp."
(:table
(dolist (sym names)
(html
((:tr :class (:format "~@[not-documented~]~@[ internal~]" (docs-for sym what) (not (exported-p sym))))
((:tr :class (:format "~:[not-documented~;~]~:[ internal~;~]" (docs-for sym what) (exported-p sym)))
(:td :class "symbol" (:print (princ-to-string sym)))
(:td :class "docs" (:print (or (docs-for sym what) "NO DOCS!")))))))))

Expand Down

0 comments on commit 4554c2c

Please sign in to comment.