Skip to content

Commit 63eea09

Browse files
committed
Do string-downcase system-name in who-depends-on
Fixes quicklisp#203
1 parent b525ae5 commit 63eea09

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

quicklisp/misc.lisp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
(defun who-depends-on (system-name)
1616
"Return a list of names of systems that depend on SYSTEM-NAME."
17+
(setf system-name (string-downcase system-name))
1718
(loop for system in (provided-systems t)
1819
when (member system-name (required-systems system) :test 'string=)
1920
collect (name system)))

0 commit comments

Comments
 (0)