We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9691f04 + f426f76 commit 2bbf04eCopy full SHA for 2bbf04e
quicklisp/client.lisp
@@ -34,7 +34,8 @@
34
(setf systems (list systems)))
35
(dolist (thing systems systems)
36
(flet ((ql ()
37
- (autoload-system-and-dependencies thing :prompt prompt)))
+ (autoload-system-and-dependencies (name thing)
38
+ :prompt prompt)))
39
(tagbody :start
40
(restart-case (if verbose
41
(ql)
quicklisp/dist.lisp
@@ -382,6 +382,12 @@
382
(defmethod system ((name string))
383
(find-system (string-downcase name)))
384
385
+(defmethod name ((string string))
386
+ string)
387
+
388
+(defmethod name ((symbol symbol))
389
+ (symbol-name symbol))
390
391
;;;
392
;;; Dists
393
0 commit comments