summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-06 09:06:17 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-06 09:06:17 -0800
commit85a318a2a4026fb4254525ae5df7fc5185e949e1 (patch)
treef8d3a48ecdb0732a0acacfd4855aba7d9294ad2e
parent1e595ca2a5cef5a96b5c8c2bb7b9e0470399ca5e (diff)
downloadlisp-snippets-85a318a2a4026fb4254525ae5df7fc5185e949e1.tar.gz
lisp-snippets-85a318a2a4026fb4254525ae5df7fc5185e949e1.tar.bz2
lisp-snippets-85a318a2a4026fb4254525ae5df7fc5185e949e1.zip
Annotation 2 from http://paste.lisp.org/display/72068
Bugfix: find-package invoked on package object. [Note: no such fix is evident in the diff.]
-rw-r--r--pkg.lisp8
1 files changed, 0 insertions, 8 deletions
diff --git a/pkg.lisp b/pkg.lisp
index 2d98af7..997939f 100644
--- a/pkg.lisp
+++ b/pkg.lisp
@@ -1,10 +1,3 @@
-; Previous versions were not importing NIL from surrounding package into
-; the anonymous package, because (IMPORT NIL ...) interprets NIL as an empty
-; list. This inheritance is now done via a more sophisticated package cloning
-; operation, which steals the present symbols, package use list and shadowing
-; list of the package.
-; The useful directive IN is added.
-
;;;
;;; PKG---read time manipulation of package visibility.
;;;
@@ -369,4 +362,3 @@
(env-retain-syms *env*)))))
(set-dispatch-macro-character #\# #\@ #'dispatch-macro))
-