diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-01-12 02:12:41 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-01-12 02:12:41 -0800 |
commit | 5b10b858a5258d044b9da30980e5dd992fd43df2 (patch) | |
tree | aa73b8f8cdc6d141f33ac2b238c8e8bf19cb2817 | |
parent | 290a2d170ef3189bc01fcf1b470e15e154448b70 (diff) | |
download | txr-5b10b858a5258d044b9da30980e5dd992fd43df2.tar.gz txr-5b10b858a5258d044b9da30980e5dd992fd43df2.tar.bz2 txr-5b10b858a5258d044b9da30980e5dd992fd43df2.zip |
doc: bad cblk and synb.
* txr.1: Fix numerous instances of bad .cble/.cblk usage
and replace one .synb/.syne with .cblk/.cble.
-rw-r--r-- | txr.1 | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -22096,7 +22096,6 @@ calls .cblk .meti >> [ struct.slot < struct < c1v < c2v < c3v ... arg ... ] .cble -.cble except that .meta struct is evaluated only once, and @@ -24135,16 +24134,16 @@ must be a place. The following equivalence gives the semantics of assignment to a .codn last : -.cble - (set (last x n) v) <--> (set (sub x (- (max n 0)) t) v) .cblk + (set (last x n) v) <--> (set (sub x (- (max n 0)) t) v) +.cble A .code last place is deletable. The semantics of deletion may be understood in terms of the following equivalence: -.cble +.cblk (del (last x n)) <--> (del (sub x (- (max n 0)) t)) .cble @@ -24191,16 +24190,16 @@ must itself be a place. The following equivalence gives the semantics of assignment to a .codn last : -.cble - (set (butlast x n) v) <--> (set (sub x 0 (- (max n 0))) v) .cblk + (set (butlast x n) v) <--> (set (sub x 0 (- (max n 0))) v) +.cble A .code butlast place is deletable. The semantics of deletion may be understood in terms of the following equivalence: -.cble +.cblk (del (last x n)) <--> (del (sub x 0 (- (max n 0)))) .cble @@ -25725,11 +25724,11 @@ function takes variable arguments, and is equivalent to calling .code transpose on a list of the arguments. The following equivalences hold: -.synb +.cblk (zip . x) <--> (transpose x) [apply zip x] <--> (transpose x) -.syne +.cble .TP* Examples: .cblk |