diff options
| author | Lute Kamstra | 2005-03-15 17:28:15 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-03-15 17:28:15 +0000 |
| commit | a7679889e8213289331577d1d9e6d1187a20d035 (patch) | |
| tree | 7e3240533c4b27ec01b918e8fdab5b05cf5269cb | |
| parent | d457219d26570b1cefb66ccecf80f8a2e82d3949 (diff) | |
| download | emacs-a7679889e8213289331577d1d9e6d1187a20d035.tar.gz emacs-a7679889e8213289331577d1d9e6d1187a20d035.zip | |
(Instrumenting Macro Calls): Fix typos.
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/edebug.texi | 9 |
2 files changed, 8 insertions, 5 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 5d5beb1a92d..9cb76017e39 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-03-15 Lute Kamstra <lute@gnu.org> | ||
| 2 | |||
| 3 | * edebug.texi (Instrumenting Macro Calls): Fix typos. | ||
| 4 | |||
| 1 | 2005-03-08 Kim F. Storm <storm@cua.dk> | 5 | 2005-03-08 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * display.texi (Specified Space): Property :width is support on | 7 | * display.texi (Specified Space): Property :width is support on |
diff --git a/lispref/edebug.texi b/lispref/edebug.texi index e34549cccb1..a007f81dcfb 100644 --- a/lispref/edebug.texi +++ b/lispref/edebug.texi | |||
| @@ -1074,7 +1074,7 @@ time later.) | |||
| 1074 | 1074 | ||
| 1075 | Therefore, you must define an Edebug specification for each macro | 1075 | Therefore, you must define an Edebug specification for each macro |
| 1076 | that Edebug will encounter, to explain the format of calls to that | 1076 | that Edebug will encounter, to explain the format of calls to that |
| 1077 | macro. To do this, add an @code{edebug} declaration to the macro | 1077 | macro. To do this, add a @code{debug} declaration to the macro |
| 1078 | definition. Here is a simple example that shows the specification for | 1078 | definition. Here is a simple example that shows the specification for |
| 1079 | the @code{for} example macro (@pxref{Argument Evaluation}). | 1079 | the @code{for} example macro (@pxref{Argument Evaluation}). |
| 1080 | 1080 | ||
| @@ -1095,10 +1095,9 @@ the @code{declare} form. | |||
| 1095 | 1095 | ||
| 1096 | You can also define an edebug specification for a macro separately | 1096 | You can also define an edebug specification for a macro separately |
| 1097 | from the macro definition with @code{def-edebug-spec}. Adding | 1097 | from the macro definition with @code{def-edebug-spec}. Adding |
| 1098 | @code{edebug} declarations is preferred, and more convenient, for | 1098 | @code{debug} declarations is preferred, and more convenient, for macro |
| 1099 | macro definitions in Lisp, but @code{def-edebug-spec} makes it | 1099 | definitions in Lisp, but @code{def-edebug-spec} makes it possible to |
| 1100 | possible to define Edebug specifications for special forms implemented | 1100 | define Edebug specifications for special forms implemented in C. |
| 1101 | in C. | ||
| 1102 | 1101 | ||
| 1103 | @deffn Macro def-edebug-spec macro specification | 1102 | @deffn Macro def-edebug-spec macro specification |
| 1104 | Specify which expressions of a call to macro @var{macro} are forms to be | 1103 | Specify which expressions of a call to macro @var{macro} are forms to be |