Skip to content

Commit a6c0110

Browse files
committed
swank.asd: pass :reload t to SWANK-LOADER::INIT
This way (asdf:load-system :swank :force t) actually forces SWANK to be reloaded.
1 parent 7158a31 commit a6c0110

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

swank.asd

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030

3131
(defmethod asdf:perform ((o asdf:load-op) (f swank-loader-file))
3232
(load (asdf::component-pathname f))
33-
(funcall (read-from-string "swank-loader::init")
34-
:reload nil
35-
:delete nil))
33+
(funcall (read-from-string "swank-loader::init") :reload t))
3634

3735
(asdf:defsystem :swank
3836
:default-component-class swank-loader-file

0 commit comments

Comments
 (0)