sbcl stuff
This commit is contained in:
parent
1d1dbc34df
commit
5d91dbb667
335 changed files with 119806 additions and 1 deletions
19
sbcl/.quicklisp/quicklisp/misc.lisp
Normal file
19
sbcl/.quicklisp/quicklisp/misc.lisp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
;;;; misc.lisp
|
||||
|
||||
(in-package #:quicklisp-client)
|
||||
|
||||
;;;
|
||||
;;; This stuff will probably end up somewhere else.
|
||||
;;;
|
||||
|
||||
(defun use-only-quicklisp-systems ()
|
||||
(asdf:initialize-source-registry
|
||||
'(:source-registry :ignore-inherited-configuration))
|
||||
(asdf:map-systems 'asdf:clear-system)
|
||||
t)
|
||||
|
||||
(defun who-depends-on (system-name)
|
||||
"Return a list of names of systems that depend on SYSTEM-NAME."
|
||||
(loop for system in (provided-systems t)
|
||||
when (member system-name (required-systems system) :test 'string=)
|
||||
collect (name system)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue