From: Mark Wooding Date: Fri, 24 Jul 2020 22:37:20 +0000 (+0100) Subject: dot/lisp-init.lisp: Make ABCL shut up about redefinition. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/9d5669bc20154b3ee523ba727775fbfc3071d5f8 dot/lisp-init.lisp: Make ABCL shut up about redefinition. I've tried muffling warnings, but that doesn't seem to work because of the bizarre way ABCL's compiler works. --- diff --git a/dot/lisp-init.lisp b/dot/lisp-init.lisp index 0447d1e..08dce6e 100644 --- a/dot/lisp-init.lisp +++ b/dot/lisp-init.lisp @@ -34,6 +34,9 @@ #+ccl (setf ccl::*inhibit-greeting* t) +#+abcl +(setf ext:*warn-on-redefinition* nil) + ;; Obtain ASDF from somewhere. (require "asdf")