Remove a wrong IGNORE declaration.
authorStas Boukarev <stassats@gmail.com>
Fri, 6 Sep 2013 17:58:24 +0000 (21:58 +0400)
committerStas Boukarev <stassats@gmail.com>
Fri, 6 Sep 2013 17:58:24 +0000 (21:58 +0400)
An incorrect ignore declaration was used with #!-sb-package-locks,
even though the ignored variables are used without sb-package-locks
too.

Patch by Douglas Katzman.

src/code/defpackage.lisp

index ae4d051..58600c4 100644 (file)
@@ -387,9 +387,7 @@ specifies to signal a warning if SWANK package is in variance, and an error othe
            (type list nicknames shadows shadowing-imports
                  imports interns exports)
            (type (or list (member :default)) use)
-           (type (or simple-string null) doc-string)
-           #!-sb-package-locks
-           (ignore implement lock))
+           (type (or simple-string null) doc-string))
   (with-package-graph ()
     (let* ((existing-package (find-package name))
            (use (use-list-packages existing-package use))