aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-03-15 17:28:15 +0000
committerLute Kamstra2005-03-15 17:28:15 +0000
commita7679889e8213289331577d1d9e6d1187a20d035 (patch)
tree7e3240533c4b27ec01b918e8fdab5b05cf5269cb
parentd457219d26570b1cefb66ccecf80f8a2e82d3949 (diff)
downloademacs-a7679889e8213289331577d1d9e6d1187a20d035.tar.gz
emacs-a7679889e8213289331577d1d9e6d1187a20d035.zip
(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 5d5beb1a92d..9cb76017e39 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12005-03-15 Lute Kamstra <lute@gnu.org>
2
3 * edebug.texi (Instrumenting Macro Calls): Fix typos.
4
12005-03-08 Kim F. Storm <storm@cua.dk> 52005-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
1076that Edebug will encounter, to explain the format of calls to that 1076that Edebug will encounter, to explain the format of calls to that
1077macro. To do this, add an @code{edebug} declaration to the macro 1077macro. To do this, add a @code{debug} declaration to the macro
1078definition. Here is a simple example that shows the specification for 1078definition. Here is a simple example that shows the specification for
1079the @code{for} example macro (@pxref{Argument Evaluation}). 1079the @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
1097from the macro definition with @code{def-edebug-spec}. Adding 1097from 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
1099macro definitions in Lisp, but @code{def-edebug-spec} makes it 1099definitions in Lisp, but @code{def-edebug-spec} makes it possible to
1100possible to define Edebug specifications for special forms implemented 1100define Edebug specifications for special forms implemented in C.
1101in C.
1102 1101
1103@deffn Macro def-edebug-spec macro specification 1102@deffn Macro def-edebug-spec macro specification
1104Specify which expressions of a call to macro @var{macro} are forms to be 1103Specify which expressions of a call to macro @var{macro} are forms to be