mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
(Expression Syntax): Use an empty name for the function call syntax
definition. Otherwise, TeX complains about unbalanced parenthesis.
This commit is contained in:
parent
8cad6491e6
commit
b6f9dbaeee
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ loading and evaluating Scheme code at run time.
|
|||
|
||||
An expression to be evaluated takes one of the following forms.
|
||||
|
||||
@deffn syntax <symbol>
|
||||
@deffn syntax <symbol> {}
|
||||
A symbol is evaluated by dereferencing. A binding of that symbol is
|
||||
sought and the value there used. For example,
|
||||
|
||||
|
@ -50,7 +50,7 @@ x @result{} 123
|
|||
@end example
|
||||
@end deffn
|
||||
|
||||
@deffn syntax (proc [args @dots{}])
|
||||
@deffn {syntax} {} (proc [args @dots{}])
|
||||
A parenthesised expression is a function call. @var{proc} and each
|
||||
argument are evaluated, then the function (which @var{proc} evaluated
|
||||
to) is called with those arguments.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue