aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lispref/edebug.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/edebug.texi b/lispref/edebug.texi
index bcd7eba5b6f..835ddf91e94 100644
--- a/lispref/edebug.texi
+++ b/lispref/edebug.texi
@@ -1,6 +1,6 @@
1@comment -*-texinfo-*- 1@comment -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual. 2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1992, 1993, 1994, 1998, 1999 Free Software Foundation, Inc. 3@c Copyright (C) 1992, 1993, 1994, 1998, 1999, 2005 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions. 4@c See the file elisp.texi for copying conditions.
5 5
6@c This file can also be used by an independent Edebug User 6@c This file can also be used by an independent Edebug User
@@ -1082,7 +1082,7 @@ the @code{for} example macro (@pxref{Argument Evaluation}).
1082(defmacro for (var from init to final do &rest body) 1082(defmacro for (var from init to final do &rest body)
1083 "Execute a simple \"for\" loop. 1083 "Execute a simple \"for\" loop.
1084For example, (for i from 1 to 10 do (print i))." 1084For example, (for i from 1 to 10 do (print i))."
1085 (declare (edebug symbolp "from" form "to" form "do" &rest form)) 1085 (declare (debug symbolp "from" form "to" form "do" &rest form))
1086 ...) 1086 ...)
1087@end example 1087@end example
1088 1088