Skip to content
Snippets Groups Projects
Commit accca05d authored by pw's avatar pw
Browse files

Fix describe-package used-by list (from Alexander Petrov).

parent 50f33f05
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,7 @@
(when used
(format stream "It uses the packages ~{~S~^, ~}.~%"
(mapcar #'package-name used))))
(let ((users (package-use-list object)))
(let ((users (package-used-by-list object)))
(when users
(format stream "It is used by the packages ~{~S~^, ~}.~%"
(mapcar #'package-name users)))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment