From: Mark Wooding Date: Mon, 12 Aug 2019 10:09:03 +0000 (+0100) Subject: src/frontend.lisp: Remove unnecessary `:shadowing-import-from'. X-Git-Url: https://git.distorted.org.uk/~mdw/sod/commitdiff_plain/37fed32620ab3034e7e43ab6727ba66c11c0ebe9 src/frontend.lisp: Remove unnecessary `:shadowing-import-from'. When I unified the two `int' symbols, I forgot that this would have been necessary. --- diff --git a/src/frontend.lisp b/src/frontend.lisp index 10b2a6c..92573e7 100644 --- a/src/frontend.lisp +++ b/src/frontend.lisp @@ -26,8 +26,7 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (handler-bind ((warning #'muffle-warning)) (cl:defpackage #:sod-frontend - (:use #:common-lisp #:sod-utilities #:optparse #:sod #:sod-parser) - (:shadowing-import-from #:optparse #:int)))) + (:use #:common-lisp #:sod-utilities #:optparse #:sod #:sod-parser)))) (cl:in-package #:sod-frontend)