Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
531 B

преди 4 години
  1. ;;; swank-quicklisp.lisp -- Quicklisp support
  2. ;;
  3. ;; Authors: Matthew Kennedy <burnsidemk@gmail.com>
  4. ;; License: Public Domain
  5. ;;
  6. (in-package :swank)
  7. (defslimefun list-quicklisp-systems ()
  8. "Returns the Quicklisp systems list."
  9. (if (member :quicklisp *features*)
  10. (let ((ql-dist-name (find-symbol "NAME" "QL-DIST"))
  11. (ql-system-list (find-symbol "SYSTEM-LIST" "QL")))
  12. (mapcar ql-dist-name (funcall ql-system-list)))
  13. (error "Could not find Quicklisp already loaded.")))
  14. (provide :swank-quicklisp)