aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2013-08-10 13:03:11 +0800
committerXue Fuqiao2013-08-10 13:03:11 +0800
commit3a3bb90450d220c8fb336b80a9a4bdc5cc49a380 (patch)
treec4c536c55585e700f25798fbb689773910020ade
parent33a9f380e516da3090fd7370a11c7cb5b35c8751 (diff)
downloademacs-3a3bb90450d220c8fb336b80a9a4bdc5cc49a380.tar.gz
emacs-3a3bb90450d220c8fb336b80a9a4bdc5cc49a380.zip
* doc/lispref/edebug.texi (Instrumenting Macro Calls): Use @defmac for macros.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/edebug.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 5d140f72dbf..9d90a98a1ae 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-08-10 Xue Fuqiao <xfq.free@gmail.com>
2
3 * edebug.texi (Instrumenting Macro Calls): Use @defmac for macros.
4
12013-08-09 Xue Fuqiao <xfq.free@gmail.com> 52013-08-09 Xue Fuqiao <xfq.free@gmail.com>
2 6
3 * control.texi (Error Symbols): Minor fix for previous change. 7 * control.texi (Error Symbols): Minor fix for previous change.
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi
index 8e394b5d92d..8384c31a380 100644
--- a/doc/lispref/edebug.texi
+++ b/doc/lispref/edebug.texi
@@ -1132,14 +1132,14 @@ from the macro definition with @code{def-edebug-spec}. Adding
1132definitions in Lisp, but @code{def-edebug-spec} makes it possible to 1132definitions in Lisp, but @code{def-edebug-spec} makes it possible to
1133define Edebug specifications for special forms implemented in C. 1133define Edebug specifications for special forms implemented in C.
1134 1134
1135@deffn Macro def-edebug-spec macro specification 1135@defmac def-edebug-spec macro specification
1136Specify which expressions of a call to macro @var{macro} are forms to be 1136Specify which expressions of a call to macro @var{macro} are forms to be
1137evaluated. @var{specification} should be the edebug specification. 1137evaluated. @var{specification} should be the edebug specification.
1138Neither argument is evaluated. 1138Neither argument is evaluated.
1139 1139
1140The @var{macro} argument can actually be any symbol, not just a macro 1140The @var{macro} argument can actually be any symbol, not just a macro
1141name. 1141name.
1142@end deffn 1142@end defmac
1143 1143
1144Here is a table of the possibilities for @var{specification} and how each 1144Here is a table of the possibilities for @var{specification} and how each
1145directs processing of arguments. 1145directs processing of arguments.