2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
4 @c See the file elisp.texi for copying conditions.
5 @setfilename ../info/macros
6 @node Macros, Loading, Functions, Top
10 @dfn{Macros} enable you to define new control constructs and other
11 language features. A macro is defined much like a function, but instead
12 of telling how to compute a value, it tells how to compute another Lisp
13 expression which will in turn compute the value. We call this
14 expression the @dfn{expansion} of the macro.
16 Macros can do this because they operate on the unevaluated expressions
17 for the arguments, not on the argument values as functions do. They can
18 therefore construct an expansion containing these argument expressions
21 If you are using a macro to do something an ordinary function could
22 do, just for the sake of speed, consider using an inline function
23 instead. @xref{Inline Functions}.
26 * Simple Macro:: A basic example.
27 * Expansion:: How, when and why macros are expanded.
28 * Compiling Macros:: How macros are expanded by the compiler.
29 * Defining Macros:: How to write a macro definition.
30 * Backquote:: Easier construction of list structure.
31 * Problems with Macros:: Don't evaluate the macro arguments too many times.
32 Don't hide the user's variables.
36 @section A Simple Example of a Macro
38 Suppose we would like to define a Lisp construct to increment a
39 variable value, much like the @code{++} operator in C. We would like to
40 write @code{(inc x)} and have the effect of @code{(setq x (1+ x))}.
41 Here's a macro definition that does the job:
47 (list 'setq var (list '1+ var)))
51 When this is called with @code{(inc x)}, the argument @code{var} has
52 the value @code{x}---@emph{not} the @emph{value} of @code{x}. The body
53 of the macro uses this to construct the expansion, which is @code{(setq
54 x (1+ x))}. Once the macro definition returns this expansion, Lisp
55 proceeds to evaluate it, thus incrementing @code{x}.
58 @section Expansion of a Macro Call
59 @cindex expansion of macros
62 A macro call looks just like a function call in that it is a list which
63 starts with the name of the macro. The rest of the elements of the list
64 are the arguments of the macro.
66 Evaluation of the macro call begins like evaluation of a function call
67 except for one crucial difference: the macro arguments are the actual
68 expressions appearing in the macro call. They are not evaluated before
69 they are given to the macro definition. By contrast, the arguments of a
70 function are results of evaluating the elements of the function call
73 Having obtained the arguments, Lisp invokes the macro definition just
74 as a function is invoked. The argument variables of the macro are bound
75 to the argument values from the macro call, or to a list of them in the
76 case of a @code{&rest} argument. And the macro body executes and
77 returns its value just as a function body does.
79 The second crucial difference between macros and functions is that the
80 value returned by the macro body is not the value of the macro call.
81 Instead, it is an alternate expression for computing that value, also
82 known as the @dfn{expansion} of the macro. The Lisp interpreter
83 proceeds to evaluate the expansion as soon as it comes back from the
86 Since the expansion is evaluated in the normal manner, it may contain
87 calls to other macros. It may even be a call to the same macro, though
90 You can see the expansion of a given macro call by calling
93 @defun macroexpand form &optional environment
94 @cindex macro expansion
95 This function expands @var{form}, if it is a macro call. If the result
96 is another macro call, it is expanded in turn, until something which is
97 not a macro call results. That is the value returned by
98 @code{macroexpand}. If @var{form} is not a macro call to begin with, it
101 Note that @code{macroexpand} does not look at the subexpressions of
102 @var{form} (although some macro definitions may do so). Even if they
103 are macro calls themselves, @code{macroexpand} does not expand them.
105 The function @code{macroexpand} does not expand calls to inline functions.
106 Normally there is no need for that, since a call to an inline function is
107 no harder to understand than a call to an ordinary function.
109 If @var{environment} is provided, it specifies an alist of macro
110 definitions that shadow the currently defined macros. Byte compilation
116 (list 'setq var (list '1+ var)))
121 (macroexpand '(inc r))
122 @result{} (setq r (1+ r))
126 (defmacro inc2 (var1 var2)
127 (list 'progn (list 'inc var1) (list 'inc var2)))
132 (macroexpand '(inc2 r s))
133 @result{} (progn (inc r) (inc s)) ; @r{@code{inc} not expanded here.}
138 @node Compiling Macros
139 @section Macros and Byte Compilation
140 @cindex byte-compiling macros
142 You might ask why we take the trouble to compute an expansion for a
143 macro and then evaluate the expansion. Why not have the macro body
144 produce the desired results directly? The reason has to do with
147 When a macro call appears in a Lisp program being compiled, the Lisp
148 compiler calls the macro definition just as the interpreter would, and
149 receives an expansion. But instead of evaluating this expansion, it
150 compiles the expansion as if it had appeared directly in the program.
151 As a result, the compiled code produces the value and side effects
152 intended for the macro, but executes at full compiled speed. This would
153 not work if the macro body computed the value and side effects
154 itself---they would be computed at compile time, which is not useful.
156 In order for compilation of macro calls to work, the macros must be
157 defined in Lisp when the calls to them are compiled. The compiler has a
158 special feature to help you do this: if a file being compiled contains a
159 @code{defmacro} form, the macro is defined temporarily for the rest of
160 the compilation of that file. To use this feature, you must define the
161 macro in the same file where it is used and before its first use.
163 Byte-compiling a file executes any @code{require} calls at top-level
164 in the file. This is in case the file needs the required packages for
165 proper compilation. One way to ensure that necessary macro definitions
166 are available during compilation is to require the file that defines
167 them. @xref{Features}.
169 @node Defining Macros
170 @section Defining Macros
172 A Lisp macro is a list whose @sc{car} is @code{macro}. Its @sc{cdr} should
173 be a function; expansion of the macro works by applying the function
174 (with @code{apply}) to the list of unevaluated argument-expressions
177 It is possible to use an anonymous Lisp macro just like an anonymous
178 function, but this is never done, because it does not make sense to pass
179 an anonymous macro to mapping functions such as @code{mapcar}. In
180 practice, all Lisp macros have names, and they are usually defined with
181 the special form @code{defmacro}.
183 @defspec defmacro name argument-list body-forms@dots{}
184 @code{defmacro} defines the symbol @var{name} as a macro that looks
188 (macro lambda @var{argument-list} . @var{body-forms})
191 This macro object is stored in the function cell of @var{name}. The
192 value returned by evaluating the @code{defmacro} form is @var{name}, but
193 usually we ignore this value.
195 The shape and meaning of @var{argument-list} is the same as in a
196 function, and the keywords @code{&rest} and @code{&optional} may be used
197 (@pxref{Argument List}). Macros may have a documentation string, but
198 any @code{interactive} declaration is ignored since macros cannot be
199 called interactively.
204 @cindex backquote (list substitution)
205 @cindex ` (list substitution)
207 Macros often need to construct large list structures from a mixture of
208 constants and nonconstant parts. To make this easier, use the macro
209 @code{`} (often called @dfn{backquote}).
211 Backquote allows you to quote a list, but selectively evaluate
212 elements of that list. In the simplest case, it is identical to the
213 special form @code{quote} (@pxref{Quoting}). For example, these
214 two forms yield identical results:
218 (` (a list of (+ 2 3) elements))
219 @result{} (a list of (+ 2 3) elements)
222 (quote (a list of (+ 2 3) elements))
223 @result{} (a list of (+ 2 3) elements)
227 @findex , @{(with Backquote)}
228 The special marker, @code{,}, inside of the argument to backquote,
229 indicates a value that isn't constant. Backquote evaluates the
230 argument of @code{,} and puts the value in the list structure:
234 (list 'a 'list 'of (+ 2 3) 'elements)
235 @result{} (a list of 5 elements)
238 (` (a list of (, (+ 2 3)) elements))
239 @result{} (a list of 5 elements)
243 @findex ,@@ @{(with Backquote)}
244 @cindex splicing (with backquote)
245 You can also @dfn{splice} an evaluated value into the resulting list,
246 using the special marker @code{,@@}. The elements of the spliced list
247 become elements at the same level as the other elements of the resulting
248 list. The equivalent code without using @code{`} is often unreadable.
249 Here are some examples:
253 (setq some-list '(2 3))
257 (cons 1 (append some-list '(4) some-list))
258 @result{} (1 2 3 4 2 3)
261 (` (1 (,@@ some-list) 4 (,@@ some-list)))
262 @result{} (1 2 3 4 2 3)
266 (setq list '(hack foo bar))
267 @result{} (hack foo bar)
272 (cons 'words (append (cdr list) '(as elements)))))
273 @result{} (use the words foo bar as elements)
276 (` (use the words (,@@ (cdr list)) as elements))
277 @result{} (use the words foo bar as elements)
281 Emacs 18 had a bug which made the previous example fail. The bug
282 affected @code{,@@} followed only by constant elements. If you are
283 concerned with Emacs 18 compatibility, you can work around the bug like
287 (` (use the words (,@@ (cdr list)) as elements @code{(,@@ nil)}))
291 @code{(,@@ nil)} avoids the problem by being a nonconstant element that
292 does not affect the result.
295 This macro quotes @var{list} except for any sublists of the form
296 @code{(, @var{subexp})} or @code{(,@@ @var{listexp})}. Backquote
297 replaces these sublists with the value of @var{subexp} (as a single
298 element) or @var{listexp} (by splicing). Backquote copies the structure
299 of @var{list} down to the places where variable parts are substituted.
301 @ignore @c these work now!
302 There are certain contexts in which @samp{,} would not be recognized and
307 ;; @r{Use of a @samp{,} expression as the @sc{cdr} of a list.}
308 (` (a . (, 1))) ; @r{Not @code{(a . 1)}}
313 ;; @r{Use of @samp{,} in a vector.}
314 (` [a (, 1) c]) ; @r{Not @code{[a 1 c]}}
315 @error{} Wrong type argument
321 @cindex CL note---@samp{,}, @samp{,@@} as functions
323 @b{Common Lisp note:} in Common Lisp, @samp{,} and @samp{,@@} are implemented
324 as reader macros, so they do not require parentheses. Emacs Lisp implements
325 them as functions because reader macros are not supported (to save space).
328 @node Problems with Macros
329 @section Common Problems Using Macros
331 The basic facts of macro expansion have counterintuitive consequences.
332 This section describes some important consequences that can lead to
333 trouble, and rules to follow to avoid trouble.
336 * Argument Evaluation:: The expansion should evaluate each macro arg once.
337 * Surprising Local Vars:: Local variable bindings in the expansion
338 require special care.
339 * Eval During Expansion:: Don't evaluate them; put them in the expansion.
340 * Repeated Expansion:: Avoid depending on how many times expansion is done.
343 @node Argument Evaluation
344 @subsection Evaluating Macro Arguments Repeatedly
346 When defining a macro you must pay attention to the number of times
347 the arguments will be evaluated when the expansion is executed. The
348 following macro (used to facilitate iteration) illustrates the problem.
349 This macro allows us to write a simple ``for'' loop such as one might
355 (defmacro for (var from init to final do &rest body)
356 "Execute a simple \"for\" loop.
357 For example, (for i from 1 to 10 do (print i))."
358 (list 'let (list (list var init))
359 (cons 'while (cons (list '<= var final)
360 (append body (list (list 'inc var)))))))
365 (for i from 1 to 3 do
366 (setq square (* i i))
367 (princ (format "\n%d %d" i square)))
373 (setq square (* i i))
374 (princ (format "%d %d" i square))
387 (The arguments @code{from}, @code{to}, and @code{do} in this macro are
388 ``syntactic sugar''; they are entirely ignored. The idea is that you
389 will write noise words (such as @code{from}, @code{to}, and @code{do})
390 in those positions in the macro call.)
392 This macro suffers from the defect that @var{final} is evaluated on
393 every iteration. If @var{final} is a constant, this is not a problem.
394 If it is a more complex form, say @code{(long-complex-calculation x)},
395 this can slow down the execution significantly. If @var{final} has side
396 effects, executing it more than once is probably incorrect.
398 @cindex macro argument evaluation
399 A well-designed macro definition takes steps to avoid this problem by
400 producing an expansion that evaluates the argument expressions exactly
401 once unless repeated evaluation is part of the intended purpose of the
402 macro. Here is a correct expansion for the @code{for} macro:
409 (setq square (* i i))
410 (princ (format "%d %d" i square))
415 Here is a macro definition that creates this expansion:
419 (defmacro for (var from init to final do &rest body)
420 "Execute a simple for loop: (for i from 1 to 10 do (print i))."
421 (` (let (((, var) (, init))
423 (while (<= (, var) max)
429 Unfortunately, this introduces another problem.
431 Proceed to the following node.
434 @node Surprising Local Vars
435 @subsection Local Variables in Macro Expansions
438 In the previous section, the definition of @code{for} was fixed as
439 follows to make the expansion evaluate the macro arguments the proper
444 (defmacro for (var from init to final do &rest body)
445 "Execute a simple for loop: (for i from 1 to 10 do (print i))."
448 (` (let (((, var) (, init))
450 (while (<= (, var) max)
457 The new definition of @code{for} has a new problem: it introduces a
458 local variable named @code{max} which the user does not expect. This
459 causes trouble in examples such as the following:
464 (for x from 0 to 10 do
465 (let ((this (frob x)))
472 The references to @code{max} inside the body of the @code{for}, which
473 are supposed to refer to the user's binding of @code{max}, really access
474 the binding made by @code{for}.
476 The way to correct this is to use an uninterned symbol instead of
477 @code{max} (@pxref{Creating Symbols}). The uninterned symbol can be
478 bound and referred to just like any other symbol, but since it is created
479 by @code{for}, we know that it cannot appear in the user's program.
480 Since it is not interned, there is no way the user can put it into the
481 program later. It will never appear anywhere except where put by
482 @code{for}. Here is a definition of @code{for} which works this way:
486 (defmacro for (var from init to final do &rest body)
487 "Execute a simple for loop: (for i from 1 to 10 do (print i))."
488 (let ((tempvar (make-symbol "max")))
489 (` (let (((, var) (, init))
490 ((, tempvar) (, final)))
491 (while (<= (, var) (, tempvar))
498 This creates an uninterned symbol named @code{max} and puts it in the
499 expansion instead of the usual interned symbol @code{max} that appears
500 in expressions ordinarily.
502 @node Eval During Expansion
503 @subsection Evaluating Macro Arguments in Expansion
505 Another problem can happen if you evaluate any of the macro argument
506 expressions during the computation of the expansion, such as by calling
507 @code{eval} (@pxref{Eval}). If the argument is supposed to refer to the
508 user's variables, you may have trouble if the user happens to use a
509 variable with the same name as one of the macro arguments. Inside the
510 macro body, the macro argument binding is the most local binding of this
511 variable, so any references inside the form being evaluated do refer
512 to it. Here is an example:
517 (list 'setq (eval a) t))
522 (foo x) @expansion{} (setq b t)
523 @result{} t ; @r{and @code{b} has been set.}
526 (foo a) @expansion{} (setq a t)
527 @result{} t ; @r{but this set @code{a}, not @code{c}.}
532 It makes a difference whether the user's variable is named @code{a} or
533 @code{x}, because @code{a} conflicts with the macro argument variable
536 Another reason not to call @code{eval} in a macro definition is that
537 it probably won't do what you intend in a compiled program. The
538 byte-compiler runs macro definitions while compiling the program, when
539 the program's own computations (which you might have wished to access
540 with @code{eval}) don't occur and its local variable bindings don't
543 The safe way to work with the run-time value of an expression is to
544 put the expression into the macro expansion, so that its value is
545 computed as part of executing the expansion.
547 @node Repeated Expansion
548 @subsection How Many Times is the Macro Expanded?
550 Occasionally problems result from the fact that a macro call is
551 expanded each time it is evaluated in an interpreted function, but is
552 expanded only once (during compilation) for a compiled function. If the
553 macro definition has side effects, they will work differently depending
554 on how many times the macro is expanded.
556 In particular, constructing objects is a kind of side effect. If the
557 macro is called once, then the objects are constructed only once. In
558 other words, the same structure of objects is used each time the macro
559 call is executed. In interpreted operation, the macro is reexpanded
560 each time, producing a fresh collection of objects each time. Usually
561 this does not matter---the objects have the same contents whether they
562 are shared or not. But if the surrounding program does side effects
563 on the objects, it makes a difference whether they are shared. Here is
568 (defmacro empty-object ()
569 (list 'quote (cons nil nil)))
573 (defun initialize (condition)
574 (let ((object (empty-object)))
576 (setcar object condition))
582 If @code{initialize} is interpreted, a new list @code{(nil)} is
583 constructed each time @code{initialize} is called. Thus, no side effect
584 survives between calls. If @code{initialize} is compiled, then the
585 macro @code{empty-object} is expanded during compilation, producing a
586 single ``constant'' @code{(nil)} that is reused and altered each time
587 @code{initialize} is called.
589 One way to avoid pathological cases like this is to think of
590 @code{empty-object} as a funny kind of constant, not as a memory
591 allocation construct. You wouldn't use @code{setcar} on a constant such
592 as @code{'(nil)}, so naturally you won't use it on @code{(empty-object)}