summaryrefslogtreecommitdiff
path: root/doc/lispref/intro.texi
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-12-29 10:23:21 +0200
committerEli Zaretskii <eliz@gnu.org>2012-12-29 10:23:21 +0200
commit151d90884b7d06bf842273661f3c41b086bd5c3d (patch)
tree641251024bd619991f851778014db0fc38e6c7a4 /doc/lispref/intro.texi
parent3ee24a3b32543fa4cf4a2102082491cf6bcb45c5 (diff)
downloademacs-151d90884b7d06bf842273661f3c41b086bd5c3d.tar.gz
Fix bug #13292 with use of @var in @def.. commands in ELisp manual.
doc/lispref/functions.texi (Declare Form): doc/lispref/intro.texi (A Sample Function Description): doc/lispref/syntax.texi (Syntax Table Internals, Syntax Table Functions): doc/lispref/variables.texi (Using Lexical Binding): Don't use @var or CAPS in @def.. commands.
Diffstat (limited to 'doc/lispref/intro.texi')
-rw-r--r--doc/lispref/intro.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/intro.texi b/doc/lispref/intro.texi
index 12463dac09c..bee43a9bc3f 100644
--- a/doc/lispref/intro.texi
+++ b/doc/lispref/intro.texi
@@ -408,7 +408,7 @@ stands for zero or more arguments. Parentheses are used when several
arguments are grouped into additional levels of list structure. Here
is an example:
-@defspec count-loop (@var{var} [@var{from} @var{to} [@var{inc}]]) @var{body}@dots{}
+@defspec count-loop (var [from to [inc]]) body@dots{}
This imaginary special form implements a loop that executes the
@var{body} forms and then increments the variable @var{var} on each
iteration. On the first iteration, the variable has the value