diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-03-30 09:32:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-03-30 09:32:28 -0700 |
commit | d76e8b3ef97697ae1de0f1c94caaa6b0e4a7e0fd (patch) | |
tree | 85b28ad9044df4005b685cd1c2fec2aff78c211f | |
parent | 4251bd08462cd9179358d711f823405ed68a0b64 (diff) | |
download | txr-d76e8b3ef97697ae1de0f1c94caaa6b0e4a7e0fd.tar.gz txr-d76e8b3ef97697ae1de0f1c94caaa6b0e4a7e0fd.tar.bz2 txr-d76e8b3ef97697ae1de0f1c94caaa6b0e4a7e0fd.zip |
doc: incorrect text in rlet example
* txr.1: Example isn't about swapping variables.
-rw-r--r-- | txr.1 | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -33735,10 +33735,9 @@ are assignable, and provide temporary storage. .TP* "Example:" .cblk - ;; WRONG! Exchange two variables, a and b: + ;; WRONG! Real storage location needed. (rlet ((flag nil)) - ;; code which mutates flag - (flip flag)) ;; error: flag macro-expands to nil + (flip flag)) ;; error: flag expands to nil ;; Demonstration of constant-propagation (let ((a 42)) |