aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-03-21 16:45:24 +0000
committerLute Kamstra2005-03-21 16:45:24 +0000
commitaf5a6df7b15cf2cf4da8a6aa38081725f9082479 (patch)
treed0c80fc3535a91e57a3a2356389c615c0cb56463
parent51d6d30054441518bf3acb70a9f61bf62f1beb6a (diff)
downloademacs-af5a6df7b15cf2cf4da8a6aa38081725f9082479.tar.gz
emacs-af5a6df7b15cf2cf4da8a6aa38081725f9082479.zip
(Instrumenting Macro Calls): Fix another typo.
-rw-r--r--lispref/edebug.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/edebug.texi b/lispref/edebug.texi
index a007f81dcfb..c53bc8653d9 100644
--- a/lispref/edebug.texi
+++ b/lispref/edebug.texi
@@ -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 (debug 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