James M. Lawrence
Results
2
issues of
James M. Lawrence
I was bitten by this a couple times. ``` (ql:quickload :alexandria) ; => (:alexandria) (ql:uninstall :alexandria) ; => NIL (ql:uninstall "alexandria") ; => T ``` There may be a reason...
``` (quickutil:save-utils-as "foo.lisp" :with-output-to-file) ``` generates a file with this at the top: ``` (defpackage quickutil (:use #:cl) (:nicknames #:qtl)) ``` This causes compilation problems because exported symbols that already...
enhancement