summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-06 09:14:55 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-06 09:14:55 -0800
commitaff32c68beaa8f2cdab81db56bd871863a10861c (patch)
tree5041ffb01d6848cf9bb50f770266128b61cbf8fc
parent0a2e84267347bf5c7cd6bfffa7885b3b6090d3d7 (diff)
downloadlisp-snippets-aff32c68beaa8f2cdab81db56bd871863a10861c.tar.gz
lisp-snippets-aff32c68beaa8f2cdab81db56bd871863a10861c.tar.bz2
lisp-snippets-aff32c68beaa8f2cdab81db56bd871863a10861c.zip
Okay, really fix the lies, as paste 5 promised.
-rw-r--r--pkg.lisp11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkg.lisp b/pkg.lisp
index 1346a12..653d125 100644
--- a/pkg.lisp
+++ b/pkg.lisp
@@ -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