diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-02-17 07:59:31 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-02-17 07:59:31 -0800 |
commit | 26fc85257a9c20435e6f5e2bd9b728659478e406 (patch) | |
tree | 45fbf394defbfaf9520cf9e826876767d235198f | |
parent | e45772713089105c776556655d671102375d9a72 (diff) | |
download | txr-26fc85257a9c20435e6f5e2bd9b728659478e406.tar.gz txr-26fc85257a9c20435e6f5e2bd9b728659478e406.tar.bz2 txr-26fc85257a9c20435e6f5e2bd9b728659478e406.zip |
doc: fix misleading @(call @'foo).
* txr.1: The documentation wrongly refers to @(call @'foo)
which hasn't worked that way since version 144. The first
argument is a Lisp expression.
-rw-r--r-- | txr.1 | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -8528,7 +8528,7 @@ Function indirection may be performed using the .code call directive. If .meta fun-expr -is an expression which evaluates to a symbol, and +is an Lisp expression which evaluates to a symbol, and that symbol names a function which takes no arguments, then .verb @(call fun-expr) @@ -8542,7 +8542,7 @@ Example 1: \ @(define foo (arg)) @(bind arg "abc") @(end) - @(call @'foo b) + @(call 'foo b) .onom In this example, the effect is that @@ -8555,14 +8555,9 @@ ends up bound to The .code call directive here uses the -.code @'foo -expression to calculate the name of the function to be invoked. -The -.code @ -symbol indicates that the expression which follows is \*(TL , -and .code 'foo -is the \*(TL syntax for quoting a symbol. (See the +expression to calculate the name of the function to be invoked. +(See the .code quote operator). |