summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--txr.15
1 files changed, 2 insertions, 3 deletions
diff --git a/txr.1 b/txr.1
index 2ce5f4d2..fdf6bc9d 100644
--- a/txr.1
+++ b/txr.1
@@ -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))