1
Fork 0
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:
Marius Vollmer 2004-02-18 20:01:57 +00:00
parent 8cad6491e6
commit b6f9dbaeee

View file

@ -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.