2007-09-06 04:25:08 +00:00
|
|
|
@c -*-texinfo-*-
|
|
|
|
@c This is part of the GNU Emacs Lisp Reference Manual.
|
2021-01-01 09:13:56 +00:00
|
|
|
@c Copyright (C) 1990--1995, 1998, 2001--2021 Free Software Foundation,
|
2013-01-01 09:11:05 +00:00
|
|
|
@c Inc.
|
2007-09-06 04:25:08 +00:00
|
|
|
@c See the file elisp.texi for copying conditions.
|
2012-05-27 01:34:14 +00:00
|
|
|
@node Macros
|
2007-09-06 04:25:08 +00:00
|
|
|
@chapter Macros
|
|
|
|
@cindex macros
|
|
|
|
|
|
|
|
@dfn{Macros} enable you to define new control constructs and other
|
|
|
|
language features. A macro is defined much like a function, but instead
|
|
|
|
of telling how to compute a value, it tells how to compute another Lisp
|
|
|
|
expression which will in turn compute the value. We call this
|
|
|
|
expression the @dfn{expansion} of the macro.
|
|
|
|
|
|
|
|
Macros can do this because they operate on the unevaluated expressions
|
|
|
|
for the arguments, not on the argument values as functions do. They can
|
|
|
|
therefore construct an expansion containing these argument expressions
|
|
|
|
or parts of them.
|
|
|
|
|
|
|
|
If you are using a macro to do something an ordinary function could
|
|
|
|
do, just for the sake of speed, consider using an inline function
|
|
|
|
instead. @xref{Inline Functions}.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Simple Macro:: A basic example.
|
|
|
|
* Expansion:: How, when and why macros are expanded.
|
|
|
|
* Compiling Macros:: How macros are expanded by the compiler.
|
|
|
|
* Defining Macros:: How to write a macro definition.
|
|
|
|
* Problems with Macros:: Don't evaluate the macro arguments too many times.
|
|
|
|
Don't hide the user's variables.
|
|
|
|
* Indenting Macros:: Specifying how to indent macro calls.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Simple Macro
|
|
|
|
@section A Simple Example of a Macro
|
|
|
|
|
|
|
|
Suppose we would like to define a Lisp construct to increment a
|
2012-12-05 22:27:56 +00:00
|
|
|
variable value, much like the @code{++} operator in C@. We would like to
|
2007-09-06 04:25:08 +00:00
|
|
|
write @code{(inc x)} and have the effect of @code{(setq x (1+ x))}.
|
|
|
|
Here's a macro definition that does the job:
|
|
|
|
|
|
|
|
@findex inc
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(defmacro inc (var)
|
|
|
|
(list 'setq var (list '1+ var)))
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
When this is called with @code{(inc x)}, the argument @var{var} is the
|
|
|
|
symbol @code{x}---@emph{not} the @emph{value} of @code{x}, as it would
|
|
|
|
be in a function. The body of the macro uses this to construct the
|
|
|
|
expansion, which is @code{(setq x (1+ x))}. Once the macro definition
|
|
|
|
returns this expansion, Lisp proceeds to evaluate it, thus incrementing
|
|
|
|
@code{x}.
|
|
|
|
|
2013-12-23 11:27:29 +00:00
|
|
|
@defun macrop object
|
|
|
|
This predicate tests whether its argument is a macro, and returns
|
|
|
|
@code{t} if so, @code{nil} otherwise.
|
|
|
|
@end defun
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Expansion
|
|
|
|
@section Expansion of a Macro Call
|
|
|
|
@cindex expansion of macros
|
|
|
|
@cindex macro call
|
|
|
|
|
|
|
|
A macro call looks just like a function call in that it is a list which
|
|
|
|
starts with the name of the macro. The rest of the elements of the list
|
|
|
|
are the arguments of the macro.
|
|
|
|
|
|
|
|
Evaluation of the macro call begins like evaluation of a function call
|
|
|
|
except for one crucial difference: the macro arguments are the actual
|
|
|
|
expressions appearing in the macro call. They are not evaluated before
|
|
|
|
they are given to the macro definition. By contrast, the arguments of a
|
|
|
|
function are results of evaluating the elements of the function call
|
|
|
|
list.
|
|
|
|
|
|
|
|
Having obtained the arguments, Lisp invokes the macro definition just
|
|
|
|
as a function is invoked. The argument variables of the macro are bound
|
|
|
|
to the argument values from the macro call, or to a list of them in the
|
|
|
|
case of a @code{&rest} argument. And the macro body executes and
|
|
|
|
returns its value just as a function body does.
|
|
|
|
|
2012-02-05 06:44:47 +00:00
|
|
|
The second crucial difference between macros and functions is that
|
|
|
|
the value returned by the macro body is an alternate Lisp expression,
|
|
|
|
also known as the @dfn{expansion} of the macro. The Lisp interpreter
|
2007-09-06 04:25:08 +00:00
|
|
|
proceeds to evaluate the expansion as soon as it comes back from the
|
|
|
|
macro.
|
|
|
|
|
|
|
|
Since the expansion is evaluated in the normal manner, it may contain
|
|
|
|
calls to other macros. It may even be a call to the same macro, though
|
|
|
|
this is unusual.
|
|
|
|
|
2012-11-18 01:38:42 +00:00
|
|
|
Note that Emacs tries to expand macros when loading an uncompiled
|
|
|
|
Lisp file. This is not always possible, but if it is, it speeds up
|
|
|
|
subsequent execution. @xref{How Programs Do Loading}.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
You can see the expansion of a given macro call by calling
|
|
|
|
@code{macroexpand}.
|
|
|
|
|
|
|
|
@defun macroexpand form &optional environment
|
|
|
|
@cindex macro expansion
|
|
|
|
This function expands @var{form}, if it is a macro call. If the result
|
|
|
|
is another macro call, it is expanded in turn, until something which is
|
|
|
|
not a macro call results. That is the value returned by
|
|
|
|
@code{macroexpand}. If @var{form} is not a macro call to begin with, it
|
|
|
|
is returned as given.
|
|
|
|
|
|
|
|
Note that @code{macroexpand} does not look at the subexpressions of
|
|
|
|
@var{form} (although some macro definitions may do so). Even if they
|
|
|
|
are macro calls themselves, @code{macroexpand} does not expand them.
|
|
|
|
|
|
|
|
The function @code{macroexpand} does not expand calls to inline functions.
|
|
|
|
Normally there is no need for that, since a call to an inline function is
|
|
|
|
no harder to understand than a call to an ordinary function.
|
|
|
|
|
|
|
|
If @var{environment} is provided, it specifies an alist of macro
|
|
|
|
definitions that shadow the currently defined macros. Byte compilation
|
|
|
|
uses this feature.
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(defmacro inc (var)
|
|
|
|
(list 'setq var (list '1+ var)))
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(macroexpand '(inc r))
|
|
|
|
@result{} (setq r (1+ r))
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(defmacro inc2 (var1 var2)
|
|
|
|
(list 'progn (list 'inc var1) (list 'inc var2)))
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(macroexpand '(inc2 r s))
|
|
|
|
@result{} (progn (inc r) (inc s)) ; @r{@code{inc} not expanded here.}
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
|
|
@defun macroexpand-all form &optional environment
|
|
|
|
@code{macroexpand-all} expands macros like @code{macroexpand}, but
|
|
|
|
will look for and expand all macros in @var{form}, not just at the
|
|
|
|
top-level. If no macros are expanded, the return value is @code{eq}
|
|
|
|
to @var{form}.
|
|
|
|
|
|
|
|
Repeating the example used for @code{macroexpand} above with
|
|
|
|
@code{macroexpand-all}, we see that @code{macroexpand-all} @emph{does}
|
|
|
|
expand the embedded calls to @code{inc}:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
(macroexpand-all '(inc2 r s))
|
|
|
|
@result{} (progn (setq r (1+ r)) (setq s (1+ s)))
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@end defun
|
|
|
|
|
2016-01-16 13:40:58 +00:00
|
|
|
@defun macroexpand-1 form &optional environment
|
|
|
|
This function expands macros like @code{macroexpand}, but it only
|
|
|
|
performs one step of the expansion: if the result is another macro
|
|
|
|
call, @code{macroexpand-1} will not expand it.
|
|
|
|
@end defun
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Compiling Macros
|
|
|
|
@section Macros and Byte Compilation
|
|
|
|
@cindex byte-compiling macros
|
|
|
|
|
|
|
|
You might ask why we take the trouble to compute an expansion for a
|
|
|
|
macro and then evaluate the expansion. Why not have the macro body
|
|
|
|
produce the desired results directly? The reason has to do with
|
|
|
|
compilation.
|
|
|
|
|
|
|
|
When a macro call appears in a Lisp program being compiled, the Lisp
|
|
|
|
compiler calls the macro definition just as the interpreter would, and
|
|
|
|
receives an expansion. But instead of evaluating this expansion, it
|
|
|
|
compiles the expansion as if it had appeared directly in the program.
|
|
|
|
As a result, the compiled code produces the value and side effects
|
|
|
|
intended for the macro, but executes at full compiled speed. This would
|
|
|
|
not work if the macro body computed the value and side effects
|
|
|
|
itself---they would be computed at compile time, which is not useful.
|
|
|
|
|
|
|
|
In order for compilation of macro calls to work, the macros must
|
|
|
|
already be defined in Lisp when the calls to them are compiled. The
|
|
|
|
compiler has a special feature to help you do this: if a file being
|
|
|
|
compiled contains a @code{defmacro} form, the macro is defined
|
2009-03-10 00:43:20 +00:00
|
|
|
temporarily for the rest of the compilation of that file.
|
|
|
|
|
|
|
|
Byte-compiling a file also executes any @code{require} calls at
|
|
|
|
top-level in the file, so you can ensure that necessary macro
|
|
|
|
definitions are available during compilation by requiring the files
|
|
|
|
that define them (@pxref{Named Features}). To avoid loading the macro
|
|
|
|
definition files when someone @emph{runs} the compiled program, write
|
2007-09-06 04:25:08 +00:00
|
|
|
@code{eval-when-compile} around the @code{require} calls (@pxref{Eval
|
|
|
|
During Compile}).
|
|
|
|
|
|
|
|
@node Defining Macros
|
|
|
|
@section Defining Macros
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 18:42:30 +00:00
|
|
|
@cindex defining macros
|
|
|
|
@cindex macro, how to define
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-10-15 04:03:04 +00:00
|
|
|
A Lisp macro object is a list whose @sc{car} is @code{macro}, and
|
2013-09-08 18:01:25 +00:00
|
|
|
whose @sc{cdr} is a function. Expansion of the macro works
|
|
|
|
by applying the function (with @code{apply}) to the list of
|
2012-10-15 04:03:04 +00:00
|
|
|
@emph{unevaluated} arguments from the macro call.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
It is possible to use an anonymous Lisp macro just like an anonymous
|
2012-10-15 04:03:04 +00:00
|
|
|
function, but this is never done, because it does not make sense to
|
|
|
|
pass an anonymous macro to functionals such as @code{mapcar}. In
|
|
|
|
practice, all Lisp macros have names, and they are almost always
|
|
|
|
defined with the @code{defmacro} macro.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-10-15 04:03:04 +00:00
|
|
|
@defmac defmacro name args [doc] [declare] body@dots{}
|
|
|
|
@code{defmacro} defines the symbol @var{name} (which should not be
|
|
|
|
quoted) as a macro that looks like this:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@example
|
2012-10-15 04:03:04 +00:00
|
|
|
(macro lambda @var{args} . @var{body})
|
2007-09-06 04:25:08 +00:00
|
|
|
@end example
|
|
|
|
|
2012-10-15 04:03:04 +00:00
|
|
|
(Note that the @sc{cdr} of this list is a lambda expression.) This
|
|
|
|
macro object is stored in the function cell of @var{name}. The
|
|
|
|
meaning of @var{args} is the same as in a function, and the keywords
|
|
|
|
@code{&rest} and @code{&optional} may be used (@pxref{Argument List}).
|
|
|
|
Neither @var{name} nor @var{args} should be quoted. The return value
|
|
|
|
of @code{defmacro} is undefined.
|
|
|
|
|
|
|
|
@var{doc}, if present, should be a string specifying the macro's
|
|
|
|
documentation string. @var{declare}, if present, should be a
|
|
|
|
@code{declare} form specifying metadata for the macro (@pxref{Declare
|
|
|
|
Form}). Note that macros cannot have interactive declarations, since
|
|
|
|
they cannot be called interactively.
|
|
|
|
@end defmac
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-02-05 06:44:47 +00:00
|
|
|
Macros often need to construct large list structures from a mixture
|
|
|
|
of constants and nonconstant parts. To make this easier, use the
|
|
|
|
@samp{`} syntax (@pxref{Backquote}). For example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(defmacro t-becomes-nil (variable)
|
|
|
|
`(if (eq ,variable t)
|
|
|
|
(setq ,variable nil)))
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(t-becomes-nil foo)
|
|
|
|
@equiv{} (if (eq foo t) (setq foo nil))
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
@end example
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Problems with Macros
|
|
|
|
@section Common Problems Using Macros
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 18:42:30 +00:00
|
|
|
@cindex macro caveats
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-02-05 06:44:47 +00:00
|
|
|
Macro expansion can have counterintuitive consequences. This
|
|
|
|
section describes some important consequences that can lead to
|
2007-09-06 04:25:08 +00:00
|
|
|
trouble, and rules to follow to avoid trouble.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Wrong Time:: Do the work in the expansion, not in the macro.
|
|
|
|
* Argument Evaluation:: The expansion should evaluate each macro arg once.
|
|
|
|
* Surprising Local Vars:: Local variable bindings in the expansion
|
|
|
|
require special care.
|
|
|
|
* Eval During Expansion:: Don't evaluate them; put them in the expansion.
|
|
|
|
* Repeated Expansion:: Avoid depending on how many times expansion is done.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Wrong Time
|
|
|
|
@subsection Wrong Time
|
|
|
|
|
|
|
|
The most common problem in writing macros is doing some of the
|
|
|
|
real work prematurely---while expanding the macro, rather than in the
|
|
|
|
expansion itself. For instance, one real package had this macro
|
|
|
|
definition:
|
|
|
|
|
|
|
|
@example
|
|
|
|
(defmacro my-set-buffer-multibyte (arg)
|
|
|
|
(if (fboundp 'set-buffer-multibyte)
|
|
|
|
(set-buffer-multibyte arg)))
|
|
|
|
@end example
|
|
|
|
|
|
|
|
With this erroneous macro definition, the program worked fine when
|
|
|
|
interpreted but failed when compiled. This macro definition called
|
|
|
|
@code{set-buffer-multibyte} during compilation, which was wrong, and
|
|
|
|
then did nothing when the compiled package was run. The definition
|
|
|
|
that the programmer really wanted was this:
|
|
|
|
|
|
|
|
@example
|
|
|
|
(defmacro my-set-buffer-multibyte (arg)
|
|
|
|
(if (fboundp 'set-buffer-multibyte)
|
|
|
|
`(set-buffer-multibyte ,arg)))
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
This macro expands, if appropriate, into a call to
|
|
|
|
@code{set-buffer-multibyte} that will be executed when the compiled
|
|
|
|
program is actually run.
|
|
|
|
|
|
|
|
@node Argument Evaluation
|
|
|
|
@subsection Evaluating Macro Arguments Repeatedly
|
|
|
|
|
|
|
|
When defining a macro you must pay attention to the number of times
|
|
|
|
the arguments will be evaluated when the expansion is executed. The
|
2012-02-05 06:44:47 +00:00
|
|
|
following macro (used to facilitate iteration) illustrates the
|
2015-09-15 15:46:48 +00:00
|
|
|
problem. This macro allows us to write a for-loop construct.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@findex for
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(defmacro for (var from init to final do &rest body)
|
|
|
|
"Execute a simple \"for\" loop.
|
|
|
|
For example, (for i from 1 to 10 do (print i))."
|
|
|
|
(list 'let (list (list var init))
|
2012-06-11 06:48:47 +00:00
|
|
|
(cons 'while
|
|
|
|
(cons (list '<= var final)
|
|
|
|
(append body (list (list 'inc var)))))))
|
2007-09-06 04:25:08 +00:00
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(for i from 1 to 3 do
|
|
|
|
(setq square (* i i))
|
|
|
|
(princ (format "\n%d %d" i square)))
|
|
|
|
@expansion{}
|
|
|
|
@end group
|
|
|
|
@group
|
|
|
|
(let ((i 1))
|
|
|
|
(while (<= i 3)
|
|
|
|
(setq square (* i i))
|
|
|
|
(princ (format "\n%d %d" i square))
|
|
|
|
(inc i)))
|
|
|
|
@end group
|
|
|
|
@group
|
|
|
|
|
|
|
|
@print{}1 1
|
|
|
|
@print{}2 4
|
|
|
|
@print{}3 9
|
|
|
|
@result{} nil
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@noindent
|
|
|
|
The arguments @code{from}, @code{to}, and @code{do} in this macro are
|
2015-09-15 15:46:48 +00:00
|
|
|
syntactic sugar; they are entirely ignored. The idea is that you
|
2007-09-06 04:25:08 +00:00
|
|
|
will write noise words (such as @code{from}, @code{to}, and @code{do})
|
|
|
|
in those positions in the macro call.
|
|
|
|
|
|
|
|
Here's an equivalent definition simplified through use of backquote:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(defmacro for (var from init to final do &rest body)
|
|
|
|
"Execute a simple \"for\" loop.
|
|
|
|
For example, (for i from 1 to 10 do (print i))."
|
|
|
|
`(let ((,var ,init))
|
|
|
|
(while (<= ,var ,final)
|
|
|
|
,@@body
|
|
|
|
(inc ,var))))
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Both forms of this definition (with backquote and without) suffer from
|
|
|
|
the defect that @var{final} is evaluated on every iteration. If
|
|
|
|
@var{final} is a constant, this is not a problem. If it is a more
|
|
|
|
complex form, say @code{(long-complex-calculation x)}, this can slow
|
|
|
|
down the execution significantly. If @var{final} has side effects,
|
|
|
|
executing it more than once is probably incorrect.
|
|
|
|
|
|
|
|
@cindex macro argument evaluation
|
|
|
|
A well-designed macro definition takes steps to avoid this problem by
|
|
|
|
producing an expansion that evaluates the argument expressions exactly
|
|
|
|
once unless repeated evaluation is part of the intended purpose of the
|
|
|
|
macro. Here is a correct expansion for the @code{for} macro:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(let ((i 1)
|
|
|
|
(max 3))
|
|
|
|
(while (<= i max)
|
|
|
|
(setq square (* i i))
|
|
|
|
(princ (format "%d %d" i square))
|
|
|
|
(inc i)))
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Here is a macro definition that creates this expansion:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(defmacro for (var from init to final do &rest body)
|
|
|
|
"Execute a simple for loop: (for i from 1 to 10 do (print i))."
|
|
|
|
`(let ((,var ,init)
|
|
|
|
(max ,final))
|
|
|
|
(while (<= ,var max)
|
|
|
|
,@@body
|
|
|
|
(inc ,var))))
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Unfortunately, this fix introduces another problem,
|
|
|
|
described in the following section.
|
|
|
|
|
|
|
|
@node Surprising Local Vars
|
|
|
|
@subsection Local Variables in Macro Expansions
|
|
|
|
|
|
|
|
@ifnottex
|
|
|
|
In the previous section, the definition of @code{for} was fixed as
|
|
|
|
follows to make the expansion evaluate the macro arguments the proper
|
|
|
|
number of times:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(defmacro for (var from init to final do &rest body)
|
|
|
|
"Execute a simple for loop: (for i from 1 to 10 do (print i))."
|
|
|
|
@end group
|
|
|
|
@group
|
|
|
|
`(let ((,var ,init)
|
|
|
|
(max ,final))
|
|
|
|
(while (<= ,var max)
|
|
|
|
,@@body
|
|
|
|
(inc ,var))))
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
@end ifnottex
|
|
|
|
|
|
|
|
The new definition of @code{for} has a new problem: it introduces a
|
|
|
|
local variable named @code{max} which the user does not expect. This
|
|
|
|
causes trouble in examples such as the following:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(let ((max 0))
|
|
|
|
(for x from 0 to 10 do
|
|
|
|
(let ((this (frob x)))
|
|
|
|
(if (< max this)
|
|
|
|
(setq max this)))))
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@noindent
|
|
|
|
The references to @code{max} inside the body of the @code{for}, which
|
|
|
|
are supposed to refer to the user's binding of @code{max}, really access
|
|
|
|
the binding made by @code{for}.
|
|
|
|
|
|
|
|
The way to correct this is to use an uninterned symbol instead of
|
|
|
|
@code{max} (@pxref{Creating Symbols}). The uninterned symbol can be
|
|
|
|
bound and referred to just like any other symbol, but since it is
|
|
|
|
created by @code{for}, we know that it cannot already appear in the
|
|
|
|
user's program. Since it is not interned, there is no way the user can
|
|
|
|
put it into the program later. It will never appear anywhere except
|
|
|
|
where put by @code{for}. Here is a definition of @code{for} that works
|
|
|
|
this way:
|
|
|
|
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
@group
|
|
|
|
(defmacro for (var from init to final do &rest body)
|
|
|
|
"Execute a simple for loop: (for i from 1 to 10 do (print i))."
|
|
|
|
(let ((tempvar (make-symbol "max")))
|
|
|
|
`(let ((,var ,init)
|
|
|
|
(,tempvar ,final))
|
|
|
|
(while (<= ,var ,tempvar)
|
|
|
|
,@@body
|
|
|
|
(inc ,var)))))
|
|
|
|
@end group
|
More small edits for doc/lispref
* control.texi: Where possible, use example rather than smallexample.
(Sequencing, Conditionals, Signaling Errors, Handling Errors):
Tweak page breaks.
* customize.texi: Where possible, use example rather than smallexample.
(Common Keywords, Variable Definitions, Applying Customizations)
(Custom Themes): Tweak page breaks.
* eval.texi, functions.texi, loading.texi, macros.texi:
Where possible, use example rather than smallexample.
* sequences.texi (Arrays): Tweak page breaks.
* symbols.texi: Where possible, use example rather than smallexample.
(Symbol Components): Fix typo.
(Other Plists): Tweak page break.
2012-05-05 00:37:30 +00:00
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@noindent
|
|
|
|
This creates an uninterned symbol named @code{max} and puts it in the
|
|
|
|
expansion instead of the usual interned symbol @code{max} that appears
|
|
|
|
in expressions ordinarily.
|
|
|
|
|
|
|
|
@node Eval During Expansion
|
|
|
|
@subsection Evaluating Macro Arguments in Expansion
|
|
|
|
|
|
|
|
Another problem can happen if the macro definition itself
|
|
|
|
evaluates any of the macro argument expressions, such as by calling
|
|
|
|
@code{eval} (@pxref{Eval}). If the argument is supposed to refer to the
|
|
|
|
user's variables, you may have trouble if the user happens to use a
|
|
|
|
variable with the same name as one of the macro arguments. Inside the
|
|
|
|
macro body, the macro argument binding is the most local binding of this
|
|
|
|
variable, so any references inside the form being evaluated do refer to
|
|
|
|
it. Here is an example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(defmacro foo (a)
|
|
|
|
(list 'setq (eval a) t))
|
|
|
|
@end group
|
|
|
|
@group
|
|
|
|
(setq x 'b)
|
|
|
|
(foo x) @expansion{} (setq b t)
|
|
|
|
@result{} t ; @r{and @code{b} has been set.}
|
|
|
|
;; @r{but}
|
|
|
|
(setq a 'c)
|
|
|
|
(foo a) @expansion{} (setq a t)
|
|
|
|
@result{} t ; @r{but this set @code{a}, not @code{c}.}
|
|
|
|
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
It makes a difference whether the user's variable is named @code{a} or
|
|
|
|
@code{x}, because @code{a} conflicts with the macro argument variable
|
|
|
|
@code{a}.
|
|
|
|
|
|
|
|
Another problem with calling @code{eval} in a macro definition is that
|
|
|
|
it probably won't do what you intend in a compiled program. The
|
2007-11-25 03:49:34 +00:00
|
|
|
byte compiler runs macro definitions while compiling the program, when
|
2007-09-06 04:25:08 +00:00
|
|
|
the program's own computations (which you might have wished to access
|
|
|
|
with @code{eval}) don't occur and its local variable bindings don't
|
|
|
|
exist.
|
|
|
|
|
|
|
|
To avoid these problems, @strong{don't evaluate an argument expression
|
|
|
|
while computing the macro expansion}. Instead, substitute the
|
|
|
|
expression into the macro expansion, so that its value will be computed
|
|
|
|
as part of executing the expansion. This is how the other examples in
|
|
|
|
this chapter work.
|
|
|
|
|
|
|
|
@node Repeated Expansion
|
|
|
|
@subsection How Many Times is the Macro Expanded?
|
|
|
|
|
|
|
|
Occasionally problems result from the fact that a macro call is
|
|
|
|
expanded each time it is evaluated in an interpreted function, but is
|
|
|
|
expanded only once (during compilation) for a compiled function. If the
|
|
|
|
macro definition has side effects, they will work differently depending
|
|
|
|
on how many times the macro is expanded.
|
|
|
|
|
|
|
|
Therefore, you should avoid side effects in computation of the
|
|
|
|
macro expansion, unless you really know what you are doing.
|
|
|
|
|
|
|
|
One special kind of side effect can't be avoided: constructing Lisp
|
|
|
|
objects. Almost all macro expansions include constructed lists; that is
|
|
|
|
the whole point of most macros. This is usually safe; there is just one
|
|
|
|
case where you must be careful: when the object you construct is part of a
|
|
|
|
quoted constant in the macro expansion.
|
|
|
|
|
|
|
|
If the macro is expanded just once, in compilation, then the object is
|
|
|
|
constructed just once, during compilation. But in interpreted
|
|
|
|
execution, the macro is expanded each time the macro call runs, and this
|
|
|
|
means a new object is constructed each time.
|
|
|
|
|
|
|
|
In most clean Lisp code, this difference won't matter. It can matter
|
|
|
|
only if you perform side-effects on the objects constructed by the macro
|
|
|
|
definition. Thus, to avoid trouble, @strong{avoid side effects on
|
|
|
|
objects constructed by macro definitions}. Here is an example of how
|
|
|
|
such side effects can get you into trouble:
|
|
|
|
|
|
|
|
@lisp
|
|
|
|
@group
|
|
|
|
(defmacro empty-object ()
|
|
|
|
(list 'quote (cons nil nil)))
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(defun initialize (condition)
|
|
|
|
(let ((object (empty-object)))
|
|
|
|
(if condition
|
|
|
|
(setcar object condition))
|
|
|
|
object))
|
|
|
|
@end group
|
|
|
|
@end lisp
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
If @code{initialize} is interpreted, a new list @code{(nil)} is
|
|
|
|
constructed each time @code{initialize} is called. Thus, no side effect
|
|
|
|
survives between calls. If @code{initialize} is compiled, then the
|
|
|
|
macro @code{empty-object} is expanded during compilation, producing a
|
2015-09-15 15:46:48 +00:00
|
|
|
single constant @code{(nil)} that is reused and altered each time
|
2007-09-06 04:25:08 +00:00
|
|
|
@code{initialize} is called.
|
|
|
|
|
|
|
|
One way to avoid pathological cases like this is to think of
|
|
|
|
@code{empty-object} as a funny kind of constant, not as a memory
|
|
|
|
allocation construct. You wouldn't use @code{setcar} on a constant such
|
|
|
|
as @code{'(nil)}, so naturally you won't use it on @code{(empty-object)}
|
|
|
|
either.
|
|
|
|
|
|
|
|
@node Indenting Macros
|
|
|
|
@section Indenting Macros
|
|
|
|
|
2012-02-05 06:44:47 +00:00
|
|
|
Within a macro definition, you can use the @code{declare} form
|
2012-04-21 19:34:05 +00:00
|
|
|
(@pxref{Defining Macros}) to specify how @key{TAB} should indent
|
2012-02-15 05:15:43 +00:00
|
|
|
calls to the macro. An indentation specification is written like this:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@example
|
|
|
|
(declare (indent @var{indent-spec}))
|
|
|
|
@end example
|
|
|
|
|
2016-04-27 18:48:30 +00:00
|
|
|
@noindent
|
|
|
|
@cindex @code{lisp-indent-function} property
|
|
|
|
This results in the @code{lisp-indent-function} property being set on
|
|
|
|
the macro name.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@noindent
|
|
|
|
Here are the possibilities for @var{indent-spec}:
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{nil}
|
|
|
|
This is the same as no property---use the standard indentation pattern.
|
|
|
|
@item @code{defun}
|
|
|
|
Handle this function like a @samp{def} construct: treat the second
|
|
|
|
line as the start of a @dfn{body}.
|
|
|
|
@item an integer, @var{number}
|
|
|
|
The first @var{number} arguments of the function are
|
|
|
|
@dfn{distinguished} arguments; the rest are considered the body
|
|
|
|
of the expression. A line in the expression is indented according to
|
|
|
|
whether the first argument on it is distinguished or not. If the
|
|
|
|
argument is part of the body, the line is indented @code{lisp-body-indent}
|
|
|
|
more columns than the open-parenthesis starting the containing
|
|
|
|
expression. If the argument is distinguished and is either the first
|
|
|
|
or second argument, it is indented @emph{twice} that many extra columns.
|
|
|
|
If the argument is distinguished and not the first or second argument,
|
|
|
|
the line uses the standard pattern.
|
|
|
|
@item a symbol, @var{symbol}
|
|
|
|
@var{symbol} should be a function name; that function is called to
|
|
|
|
calculate the indentation of a line within this expression. The
|
|
|
|
function receives two arguments:
|
2012-02-05 06:44:47 +00:00
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@table @asis
|
2013-01-16 02:03:06 +00:00
|
|
|
@item @var{pos}
|
|
|
|
The position at which the line being indented begins.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item @var{state}
|
|
|
|
The value returned by @code{parse-partial-sexp} (a Lisp primitive for
|
|
|
|
indentation and nesting computation) when it parses up to the
|
|
|
|
beginning of this line.
|
|
|
|
@end table
|
2012-02-05 06:44:47 +00:00
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@noindent
|
|
|
|
It should return either a number, which is the number of columns of
|
|
|
|
indentation for that line, or a list whose car is such a number. The
|
|
|
|
difference between returning a number and returning a list is that a
|
|
|
|
number says that all following lines at the same nesting level should
|
|
|
|
be indented just like this one; a list says that following lines might
|
|
|
|
call for different indentations. This makes a difference when the
|
|
|
|
indentation is being computed by @kbd{C-M-q}; if the value is a
|
|
|
|
number, @kbd{C-M-q} need not recalculate indentation for the following
|
|
|
|
lines until the end of the list.
|
|
|
|
@end table
|