aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra <[email protected]>2005-03-15 17:28:15 +0000
committerLute Kamstra <[email protected]>2005-03-15 17:28:15 +0000
commita7679889e8213289331577d1d9e6d1187a20d035 (patch)
tree7e3240533c4b27ec01b918e8fdab5b05cf5269cb
parentd457219d26570b1cefb66ccecf80f8a2e82d3949 (diff)
(Instrumenting Macro Calls): Fix typos.
-rw-r--r--lispref/ChangeLog4
-rw-r--r--lispref/edebug.texi9
2 files changed, 8 insertions, 5 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 5d5beb1a92..9cb76017e3 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-15 Lute Kamstra <[email protected]>
+
+ * edebug.texi (Instrumenting Macro Calls): Fix typos.
+
2005-03-08 Kim F. Storm <[email protected]>
* display.texi (Specified Space): Property :width is support on
diff --git a/lispref/edebug.texi b/lispref/edebug.texi
index e34549cccb..a007f81dcf 100644
--- a/lispref/edebug.texi
+++ b/lispref/edebug.texi
@@ -1074,7 +1074,7 @@ time later.)
Therefore, you must define an Edebug specification for each macro
that Edebug will encounter, to explain the format of calls to that
-macro. To do this, add an @code{edebug} declaration to the macro
+macro. To do this, add a @code{debug} declaration to the macro
definition. Here is a simple example that shows the specification for
the @code{for} example macro (@pxref{Argument Evaluation}).
@@ -1095,10 +1095,9 @@ the @code{declare} form.
You can also define an edebug specification for a macro separately
from the macro definition with @code{def-edebug-spec}. Adding
-@code{edebug} declarations is preferred, and more convenient, for
-macro definitions in Lisp, but @code{def-edebug-spec} makes it
-possible to define Edebug specifications for special forms implemented
-in C.
+@code{debug} declarations is preferred, and more convenient, for macro
+definitions in Lisp, but @code{def-edebug-spec} makes it possible to
+define Edebug specifications for special forms implemented in C.
@deffn Macro def-edebug-spec macro specification
Specify which expressions of a call to macro @var{macro} are forms to be