vendor/quickutils-package.lisp @ e7ed5e5a2d9e default tip
Use ERROR instead of an ECASE form with no clauses. SBCL outputs compilation warnings for ECASE forms missing clauses and that causes Quicklisp test failures.
| author | Robert Brown <robert.brown@gmail.com> |
|---|---|
| date | Sat, 04 Nov 2023 10:42:34 -0400 |
| parents | c3d408862ac3 |
| children | (none) |
(eval-when (:compile-toplevel :load-toplevel :execute) (unless (find-package "DIGRAPH.QUICKUTILS") (defpackage "DIGRAPH.QUICKUTILS" (:documentation "Package that contains Quickutil utility functions.") (:use :cl)))) (in-package "DIGRAPH.QUICKUTILS") ;; need to define this here so sbcl will shut the hell up about it being ;; undefined when compiling quickutils.lisp. computers are trash. (defparameter *utilities* nil)