diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-01-06 09:14:55 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-01-06 09:14:55 -0800 |
commit | aff32c68beaa8f2cdab81db56bd871863a10861c (patch) | |
tree | 5041ffb01d6848cf9bb50f770266128b61cbf8fc /pkg.lisp | |
parent | 0a2e84267347bf5c7cd6bfffa7885b3b6090d3d7 (diff) | |
download | lisp-snippets-aff32c68beaa8f2cdab81db56bd871863a10861c.tar.gz lisp-snippets-aff32c68beaa8f2cdab81db56bd871863a10861c.tar.bz2 lisp-snippets-aff32c68beaa8f2cdab81db56bd871863a10861c.zip |
Okay, really fix the lies, as paste 5 promised.
Diffstat (limited to 'pkg.lisp')
-rw-r--r-- | pkg.lisp | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -223,12 +223,11 @@ ;;; ;;; These are "noop" directives, which do nothing. ;;; -;;; The syntax #@() FORM is equivalent to FORM except -;;; that if evaluation is invoked during the processing of FORM -;;; (e.g. via the sharpsign-dot reader) it will be able to -;;; observe that a temporary package is in effect, and that -;;; lexically earlier symbols have not yet been interned into -;;; the surrounding package. +;;; The syntax #@() FORM means that FORM is read in the +;;; context of an anonymous package, in which symbols from +;;; the surrounding package are present. Symbols which +;;; are newly interned while reading FORM stay in that +;;; anonymous package. ;;; ;;; ;;; Reconciliation |