diff options
| author | Xue Fuqiao | 2013-08-10 13:03:11 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-08-10 13:03:11 +0800 |
| commit | 3a3bb90450d220c8fb336b80a9a4bdc5cc49a380 (patch) | |
| tree | c4c536c55585e700f25798fbb689773910020ade | |
| parent | 33a9f380e516da3090fd7370a11c7cb5b35c8751 (diff) | |
| download | emacs-3a3bb90450d220c8fb336b80a9a4bdc5cc49a380.tar.gz emacs-3a3bb90450d220c8fb336b80a9a4bdc5cc49a380.zip | |
* doc/lispref/edebug.texi (Instrumenting Macro Calls): Use @defmac for macros.
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/edebug.texi | 4 |
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 @@ | |||
| 1 | 2013-08-10 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * edebug.texi (Instrumenting Macro Calls): Use @defmac for macros. | ||
| 4 | |||
| 1 | 2013-08-09 Xue Fuqiao <xfq.free@gmail.com> | 5 | 2013-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 | |||
| 1132 | definitions in Lisp, but @code{def-edebug-spec} makes it possible to | 1132 | definitions in Lisp, but @code{def-edebug-spec} makes it possible to |
| 1133 | define Edebug specifications for special forms implemented in C. | 1133 | define 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 |
| 1136 | Specify which expressions of a call to macro @var{macro} are forms to be | 1136 | Specify which expressions of a call to macro @var{macro} are forms to be |
| 1137 | evaluated. @var{specification} should be the edebug specification. | 1137 | evaluated. @var{specification} should be the edebug specification. |
| 1138 | Neither argument is evaluated. | 1138 | Neither argument is evaluated. |
| 1139 | 1139 | ||
| 1140 | The @var{macro} argument can actually be any symbol, not just a macro | 1140 | The @var{macro} argument can actually be any symbol, not just a macro |
| 1141 | name. | 1141 | name. |
| 1142 | @end deffn | 1142 | @end defmac |
| 1143 | 1143 | ||
| 1144 | Here is a table of the possibilities for @var{specification} and how each | 1144 | Here is a table of the possibilities for @var{specification} and how each |
| 1145 | directs processing of arguments. | 1145 | directs processing of arguments. |