From 91f94cfd8e003f7ed4bcbca55943a9f588ecc576 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 30 Mar 2018 09:32:28 -0700 Subject: doc: incorrect text in rlet example * txr.1: Example isn't about swapping variables. --- txr.1 | 5 ++--- 1 file 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)) -- cgit v1.2.3