Initial commit

This commit is contained in:
Mateus Pinto Rodrigues
2017-11-11 15:15:10 -02:00
commit 58c3bd6728
1202 changed files with 434097 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
;;; swank-quicklisp.lisp -- Quicklisp support
;;
;; Authors: Matthew Kennedy <burnsidemk@gmail.com>
;; License: Public Domain
;;
(in-package :swank)
(defslimefun list-quicklisp-systems ()
"Returns the Quicklisp systems list."
(if (member :quicklisp *features*)
(let ((ql-dist-name (find-symbol "NAME" "QL-DIST"))
(ql-system-list (find-symbol "SYSTEM-LIST" "QL")))
(mapcar ql-dist-name (funcall ql-system-list)))
(error "Could not find Quicklisp already loaded.")))
(provide :swank-quicklisp)