diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-05 06:22:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-05 06:22:08 -0700 |
commit | c1f4d79ad5fa862708e1203cd5e78ed595d6ab34 (patch) | |
tree | 81f6186090ae1ff8f55a5e50953438d6200048ba /txr.1 | |
parent | 10d119b8f174c080ca07f553c694af11a7373277 (diff) | |
download | txr-c1f4d79ad5fa862708e1203cd5e78ed595d6ab34.tar.gz txr-c1f4d79ad5fa862708e1203cd5e78ed595d6ab34.tar.bz2 txr-c1f4d79ad5fa862708e1203cd5e78ed595d6ab34.zip |
Fix inappropriate references to tree-bind.
* txr.1: Documentation for the tc macro falsely claims
that it is based on tree-bind, in the description and
example expansion.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25003,9 +25003,9 @@ operator. Its name is an abbreviation of The anonymous function takes a variable number of arguments. Its argument list is taken to be the value macro is tested against the multiple pattern clauses of an implicit -.codn tree-bind . +.codn tree-case . The return value of the function is that of the implied -.codn tree-bind . +.codn tree-case . The following equivalence holds, where .code args @@ -25013,7 +25013,7 @@ should be understood to be a globally unique symbol: .cblk (tc clause1 clause2 ...) <--> (lambda (. args) - (tree-bind args + (tree-case args clause1 clause2 ...)) .cble |