Kaïraba Cissé <
ckai...@gmail.com> writes:
> It can be painful to quickload a lot of
> systems.
> So, I added the following code in my init files.
> Is it an interresting extension to replace
> quickload ?
QUICKLOAD already takes a list as its first argument. I'll look into
passing a system object as a designator, though.
> (in-package #:quicklisp-client)
> (defun system-apropos* (term)
> (let (result)
> (dolist (system (provided-systems t))
> (when (or (search term (name system))
> (search term (name (release system))))
> (push system result)))
> (nreverse result)))
I think I'd call it something like SYSTEM-APROPOS-LIST.
Zach