Re: ASDF: optimization settings and other enhancements



John wrote:
On 2005-08-30, Klaus Weidner <kweidner@xxxxxxxxx> wrote:

(defmacro asdf::use (&rest pkgs)
`(eval-when (:compile-toplevel :load-toplevel :execute)
,@(loop for pkg in pkgs collect `(asdf:oos 'asdf:load-op ,pkg))))


This way, (asdf::use :cl-ppcre :xmls) works interactively to load multiple
packages.


I guess that's a little shorter than:

  (require 'cl-ppcre)
  (require 'xmls)

but not by much.


I kinda like : (mapcar #'require '(cl-ppcre xmls))

drewc

--
Drew Crampsie
drewc at tech dot coop
"Never mind the bollocks -- here's the sexp's tools."
	-- Karl A. Krueger on comp.lang.lisp
.