Skip to content

Commit

Permalink
Merge pull request #2 from LispyStuff/master
Browse files Browse the repository at this point in the history
Minimal changes to run on LW8
  • Loading branch information
svetlyak40wt authored Jan 7, 2025
2 parents 8d2a165 + 13bd903 commit 19cc187
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion documentation.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ directory, optionally appending the string RELATIVE-PATH."
(format nil
#+(or :lispworks6.1 :lispworks7)
"manual/online/~A"
#-(or :lispworks6.1 :lispworks7)
#+:lispworks8
"manual/html-w/~A"
#-(or :lispworks6.1 :lispworks7 :lispworks8)
"manual/online/web/~A"
(or relative-path "")))))

Expand Down
4 changes: 2 additions & 2 deletions systems.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ as members of type :SYSTEM. Returns its original argument."
(gc-if-needed)
module-name)))))

#-:lispworks7
#-:lispworks7+
(defadvice (asdf::parse-component-form translate :around
:documentation "Whenever
an ASDF system is parsed we translate it to a Common Defsystem
Expand All @@ -275,7 +275,7 @@ system definition on the fly.")
(translate-module candidate)))
candidate))

#-:lispworks7
#-:lispworks7+
;; translate the systems that have already been loaded
(dolist (sys-name '(:cl-ppcre :cl-who :lw-doc :lw-add-ons))
(translate-module (asdf:find-system sys-name)))

0 comments on commit 19cc187

Please sign in to comment.