Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion quicklisp/client.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
(setf systems (list systems)))
(dolist (thing systems systems)
(flet ((ql ()
(autoload-system-and-dependencies thing :prompt prompt)))
(autoload-system-and-dependencies (name thing)
:prompt prompt)))
(tagbody :start
(restart-case (if verbose
(ql)
Expand Down
6 changes: 6 additions & 0 deletions quicklisp/dist.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,12 @@
(defmethod system ((name string))
(find-system (string-downcase name)))

(defmethod name ((string string))
string)

(defmethod name ((symbol symbol))
(symbol-name symbol))

;;;
;;; Dists
;;;
Expand Down