From b6f9dbaeeedf00f7440d6a9e57587bda223299f9 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Wed, 18 Feb 2004 20:01:57 +0000 Subject: [PATCH] (Expression Syntax): Use an empty name for the function call syntax definition. Otherwise, TeX complains about unbalanced parenthesis. --- doc/ref/scheme-evaluation.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ref/scheme-evaluation.texi b/doc/ref/scheme-evaluation.texi index 38338e9f2..3d9664a44 100644 --- a/doc/ref/scheme-evaluation.texi +++ b/doc/ref/scheme-evaluation.texi @@ -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 +@deffn syntax {} 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.