diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-09-14 19:54:33 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-09-14 19:54:33 -0700 |
commit | 66967a101ed46a191f9cb24b2313713588fa5f41 (patch) | |
tree | 90260b19990e8040e6bdc8a6199f87e42f3e91bb | |
parent | 5df0c3e6b88e31b4e41041ce654f0ee8f402874e (diff) | |
download | txr-66967a101ed46a191f9cb24b2313713588fa5f41.tar.gz txr-66967a101ed46a191f9cb24b2313713588fa5f41.tar.bz2 txr-66967a101ed46a191f9cb24b2313713588fa5f41.zip |
doc: issues in qquote example.
* txr.1: fix flaw in comment next to ^(qquote (unquote ,x)).
Clarify accompanying text.
-rw-r--r-- | txr.1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33397,7 +33397,7 @@ This also allows programmers to use the quasiquote read syntax to construct quasiquote macros. For instance .cblk - ^(qquote (unquote ,x)) ;; does not mean ^^,x + ^(qquote (unquote ,x)) ;; does not mean ^^,,x ! .cble To the quasiquote reader, the @@ -33409,7 +33409,7 @@ and so this syntax simply means that if the value of .code x is .codn foo , -the result will be +the result of evaluating this expression will be .codn "(qquote (unquote foo))" . The form's expansion is actually this: |