;;;; config ;;;; start slime (M-x slime ) ;;;; go to this buffer and load it (C-c C-l ) (let (files) (defun make (&optional verbosep &rest new ) (labels ((make0 (x) (format t "~a " x) (load x))) (format t "~&;") (if new (setf files new)) (if verbosep (mapcar #'make0 files) (handler-bind ; SBCL-specific ((style-warning #'muffle-warning)) (mapcar #'make0 files))) (terpri) t)) ) (make nil "../lib/deftest.lisp" "../lib/macros.lisp" "../lib/lib.lisp" "../lib/hash.lisp" "../lib/bestof.lisp" "../lib/random.lisp" "../lib/profile.lisp" "lib1.lisp" "bestof.lisp" "structs.lisp" "data.lisp" "which2d.lisp" "defstructs.lisp" "angle.lisp" "3will.lisp" "3cristin.lisp" "../lib/mann-whitney.lisp" "../lib/ntile.lisp" "../lib/line.lisp" "watch.lisp" )