diff options
| author | Lute Kamstra | 2005-03-21 16:45:24 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-03-21 16:45:24 +0000 |
| commit | af5a6df7b15cf2cf4da8a6aa38081725f9082479 (patch) | |
| tree | d0c80fc3535a91e57a3a2356389c615c0cb56463 | |
| parent | 51d6d30054441518bf3acb70a9f61bf62f1beb6a (diff) | |
| download | emacs-af5a6df7b15cf2cf4da8a6aa38081725f9082479.tar.gz emacs-af5a6df7b15cf2cf4da8a6aa38081725f9082479.zip | |
(Instrumenting Macro Calls): Fix another typo.
| -rw-r--r-- | lispref/edebug.texi | 2 |
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. |
| 1084 | For example, (for i from 1 to 10 do (print i))." | 1084 | For 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 | ||