summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-05 06:22:08 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-05 06:22:08 -0700
commitc1f4d79ad5fa862708e1203cd5e78ed595d6ab34 (patch)
tree81f6186090ae1ff8f55a5e50953438d6200048ba /txr.1
parent10d119b8f174c080ca07f553c694af11a7373277 (diff)
downloadtxr-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.16
1 files changed, 3 insertions, 3 deletions
diff --git a/txr.1 b/txr.1
index 295f8190..bffedd3d 100644
--- a/txr.1
+++ b/txr.1
@@ -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