Go to the first, previous, next, last section, table of contents.


Instrumenting Macro Calls

When Edebug instruments an expression that calls a Lisp macro, it needs additional advice to do the job properly. This is because there is no way to tell which subexpressions of the macro call are forms to be evaluated. (Evaluation may occur explicitly in the macro body, or when the resulting expansion is evaluated, or any time later.) You must explain the format of calls to each macro to enable Edebug to handle it. To do this, use def-edebug-spec to define the format of calls to a given macro.

Macro: def-edebug-spec macro specification
Specify which expressions of a call to macro macro are forms to be evaluated. For simple macros, the specification often looks very similar to the formal argument list of the macro definition, but specifications are much more general than macro arguments.

The macro argument may actually be any symbol, not just a macro name.

Here is a simple example that defines the specification for the for macro described in the Emacs Lisp Reference Manual, followed by an alternative, equivalent specification.

(def-edebug-spec for
  (symbolp "from" form "to" form "do" &rest form))

(def-edebug-spec for
  (symbolp ['from form] ['to form] ['do body]))

Here is a table of the possibilities for specification and how each directs processing of arguments.

t
All arguments are instrumented for evaluation.
0
None of the arguments is instrumented.
a symbol
The symbol must have an Edebug specification which is used instead. This indirection is repeated until another kind of specification is found. This allows you to inherit the specification for another macro.
a list
The elements of the list describe the types of the arguments of a calling form. The possible elements of a specification list are described in the following sections.


Go to the first, previous, next, last section, table of contents.