diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-01-06 09:06:17 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-01-06 09:06:17 -0800 |
commit | 85a318a2a4026fb4254525ae5df7fc5185e949e1 (patch) | |
tree | f8d3a48ecdb0732a0acacfd4855aba7d9294ad2e | |
parent | 1e595ca2a5cef5a96b5c8c2bb7b9e0470399ca5e (diff) | |
download | lisp-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.lisp | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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)) - |