From 9d5669bc20154b3ee523ba727775fbfc3071d5f8 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Fri, 24 Jul 2020 23:37:20 +0100 Subject: [PATCH] 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. --- dot/lisp-init.lisp | 3 +++ 1 file changed, 3 insertions(+) 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") -- 2.11.0