Convert consecutive FSF copyright years to ranges.
[bpt/emacs.git] / doc / lispref / control.texi
CommitLineData
b8d4c8d0
GM
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
73b0cd50 3@c Copyright (C) 1990-1995, 1998-1999, 2001-2011 Free Software Foundation, Inc.
b8d4c8d0 4@c See the file elisp.texi for copying conditions.
6336d8c3 5@setfilename ../../info/control
b8d4c8d0
GM
6@node Control Structures, Variables, Evaluation, Top
7@chapter Control Structures
8@cindex special forms for control structures
9@cindex control structures
10
11 A Lisp program consists of expressions or @dfn{forms} (@pxref{Forms}).
12We control the order of execution of these forms by enclosing them in
13@dfn{control structures}. Control structures are special forms which
14control when, whether, or how many times to execute the forms they
15contain.
16
13e31e2b 17@cindex textual order
b8d4c8d0
GM
18 The simplest order of execution is sequential execution: first form
19@var{a}, then form @var{b}, and so on. This is what happens when you
20write several forms in succession in the body of a function, or at top
21level in a file of Lisp code---the forms are executed in the order
22written. We call this @dfn{textual order}. For example, if a function
23body consists of two forms @var{a} and @var{b}, evaluation of the
24function evaluates first @var{a} and then @var{b}. The result of
25evaluating @var{b} becomes the value of the function.
26
27 Explicit control structures make possible an order of execution other
28than sequential.
29
30 Emacs Lisp provides several kinds of control structure, including
31other varieties of sequencing, conditionals, iteration, and (controlled)
32jumps---all discussed below. The built-in control structures are
33special forms since their subforms are not necessarily evaluated or not
34evaluated sequentially. You can use macros to define your own control
35structure constructs (@pxref{Macros}).
36
37@menu
38* Sequencing:: Evaluation in textual order.
39* Conditionals:: @code{if}, @code{cond}, @code{when}, @code{unless}.
40* Combining Conditions:: @code{and}, @code{or}, @code{not}.
41* Iteration:: @code{while} loops.
42* Nonlocal Exits:: Jumping out of a sequence.
43@end menu
44
45@node Sequencing
46@section Sequencing
47
48 Evaluating forms in the order they appear is the most common way
49control passes from one form to another. In some contexts, such as in a
50function body, this happens automatically. Elsewhere you must use a
51control structure construct to do this: @code{progn}, the simplest
52control construct of Lisp.
53
54 A @code{progn} special form looks like this:
55
56@example
57@group
58(progn @var{a} @var{b} @var{c} @dots{})
59@end group
60@end example
61
62@noindent
63and it says to execute the forms @var{a}, @var{b}, @var{c}, and so on, in
64that order. These forms are called the @dfn{body} of the @code{progn} form.
65The value of the last form in the body becomes the value of the entire
66@code{progn}. @code{(progn)} returns @code{nil}.
67
68@cindex implicit @code{progn}
69 In the early days of Lisp, @code{progn} was the only way to execute
70two or more forms in succession and use the value of the last of them.
71But programmers found they often needed to use a @code{progn} in the
72body of a function, where (at that time) only one form was allowed. So
73the body of a function was made into an ``implicit @code{progn}'':
74several forms are allowed just as in the body of an actual @code{progn}.
75Many other control structures likewise contain an implicit @code{progn}.
76As a result, @code{progn} is not used as much as it was many years ago.
77It is needed now most often inside an @code{unwind-protect}, @code{and},
78@code{or}, or in the @var{then}-part of an @code{if}.
79
80@defspec progn forms@dots{}
81This special form evaluates all of the @var{forms}, in textual
82order, returning the result of the final form.
83
84@example
85@group
86(progn (print "The first form")
87 (print "The second form")
88 (print "The third form"))
89 @print{} "The first form"
90 @print{} "The second form"
91 @print{} "The third form"
92@result{} "The third form"
93@end group
94@end example
95@end defspec
96
97 Two other control constructs likewise evaluate a series of forms but return
98a different value:
99
100@defspec prog1 form1 forms@dots{}
101This special form evaluates @var{form1} and all of the @var{forms}, in
102textual order, returning the result of @var{form1}.
103
104@example
105@group
106(prog1 (print "The first form")
107 (print "The second form")
108 (print "The third form"))
109 @print{} "The first form"
110 @print{} "The second form"
111 @print{} "The third form"
112@result{} "The first form"
113@end group
114@end example
115
116Here is a way to remove the first element from a list in the variable
117@code{x}, then return the value of that former element:
118
119@example
120(prog1 (car x) (setq x (cdr x)))
121@end example
122@end defspec
123
124@defspec prog2 form1 form2 forms@dots{}
125This special form evaluates @var{form1}, @var{form2}, and all of the
126following @var{forms}, in textual order, returning the result of
127@var{form2}.
128
129@example
130@group
131(prog2 (print "The first form")
132 (print "The second form")
133 (print "The third form"))
134 @print{} "The first form"
135 @print{} "The second form"
136 @print{} "The third form"
137@result{} "The second form"
138@end group
139@end example
140@end defspec
141
142@node Conditionals
143@section Conditionals
144@cindex conditional evaluation
145
146 Conditional control structures choose among alternatives. Emacs Lisp
147has four conditional forms: @code{if}, which is much the same as in
148other languages; @code{when} and @code{unless}, which are variants of
149@code{if}; and @code{cond}, which is a generalized case statement.
150
151@defspec if condition then-form else-forms@dots{}
152@code{if} chooses between the @var{then-form} and the @var{else-forms}
153based on the value of @var{condition}. If the evaluated @var{condition} is
154non-@code{nil}, @var{then-form} is evaluated and the result returned.
155Otherwise, the @var{else-forms} are evaluated in textual order, and the
156value of the last one is returned. (The @var{else} part of @code{if} is
157an example of an implicit @code{progn}. @xref{Sequencing}.)
158
159If @var{condition} has the value @code{nil}, and no @var{else-forms} are
160given, @code{if} returns @code{nil}.
161
162@code{if} is a special form because the branch that is not selected is
163never evaluated---it is ignored. Thus, in the example below,
164@code{true} is not printed because @code{print} is never called.
165
166@example
167@group
168(if nil
169 (print 'true)
170 'very-false)
171@result{} very-false
172@end group
173@end example
174@end defspec
175
176@defmac when condition then-forms@dots{}
177This is a variant of @code{if} where there are no @var{else-forms},
178and possibly several @var{then-forms}. In particular,
179
180@example
181(when @var{condition} @var{a} @var{b} @var{c})
182@end example
183
184@noindent
185is entirely equivalent to
186
187@example
188(if @var{condition} (progn @var{a} @var{b} @var{c}) nil)
189@end example
190@end defmac
191
192@defmac unless condition forms@dots{}
193This is a variant of @code{if} where there is no @var{then-form}:
194
195@example
196(unless @var{condition} @var{a} @var{b} @var{c})
197@end example
198
199@noindent
200is entirely equivalent to
201
202@example
203(if @var{condition} nil
204 @var{a} @var{b} @var{c})
205@end example
206@end defmac
207
208@defspec cond clause@dots{}
209@code{cond} chooses among an arbitrary number of alternatives. Each
210@var{clause} in the @code{cond} must be a list. The @sc{car} of this
211list is the @var{condition}; the remaining elements, if any, the
212@var{body-forms}. Thus, a clause looks like this:
213
214@example
215(@var{condition} @var{body-forms}@dots{})
216@end example
217
218@code{cond} tries the clauses in textual order, by evaluating the
219@var{condition} of each clause. If the value of @var{condition} is
220non-@code{nil}, the clause ``succeeds''; then @code{cond} evaluates its
221@var{body-forms}, and the value of the last of @var{body-forms} becomes
222the value of the @code{cond}. The remaining clauses are ignored.
223
224If the value of @var{condition} is @code{nil}, the clause ``fails,'' so
225the @code{cond} moves on to the following clause, trying its
226@var{condition}.
227
228If every @var{condition} evaluates to @code{nil}, so that every clause
229fails, @code{cond} returns @code{nil}.
230
231A clause may also look like this:
232
233@example
234(@var{condition})
235@end example
236
237@noindent
238Then, if @var{condition} is non-@code{nil} when tested, the value of
239@var{condition} becomes the value of the @code{cond} form.
240
241The following example has four clauses, which test for the cases where
242the value of @code{x} is a number, string, buffer and symbol,
243respectively:
244
245@example
246@group
247(cond ((numberp x) x)
248 ((stringp x) x)
249 ((bufferp x)
250 (setq temporary-hack x) ; @r{multiple body-forms}
251 (buffer-name x)) ; @r{in one clause}
252 ((symbolp x) (symbol-value x)))
253@end group
254@end example
255
256Often we want to execute the last clause whenever none of the previous
257clauses was successful. To do this, we use @code{t} as the
258@var{condition} of the last clause, like this: @code{(t
259@var{body-forms})}. The form @code{t} evaluates to @code{t}, which is
260never @code{nil}, so this clause never fails, provided the @code{cond}
261gets to it at all.
262
263For example,
264
265@example
266@group
267(setq a 5)
268(cond ((eq a 'hack) 'foo)
269 (t "default"))
270@result{} "default"
271@end group
272@end example
273
274@noindent
275This @code{cond} expression returns @code{foo} if the value of @code{a}
276is @code{hack}, and returns the string @code{"default"} otherwise.
277@end defspec
278
279Any conditional construct can be expressed with @code{cond} or with
280@code{if}. Therefore, the choice between them is a matter of style.
281For example:
282
283@example
284@group
285(if @var{a} @var{b} @var{c})
286@equiv{}
287(cond (@var{a} @var{b}) (t @var{c}))
288@end group
289@end example
290
291@node Combining Conditions
292@section Constructs for Combining Conditions
293
294 This section describes three constructs that are often used together
295with @code{if} and @code{cond} to express complicated conditions. The
296constructs @code{and} and @code{or} can also be used individually as
297kinds of multiple conditional constructs.
298
299@defun not condition
300This function tests for the falsehood of @var{condition}. It returns
301@code{t} if @var{condition} is @code{nil}, and @code{nil} otherwise.
302The function @code{not} is identical to @code{null}, and we recommend
303using the name @code{null} if you are testing for an empty list.
304@end defun
305
306@defspec and conditions@dots{}
307The @code{and} special form tests whether all the @var{conditions} are
308true. It works by evaluating the @var{conditions} one by one in the
309order written.
310
311If any of the @var{conditions} evaluates to @code{nil}, then the result
312of the @code{and} must be @code{nil} regardless of the remaining
313@var{conditions}; so @code{and} returns @code{nil} right away, ignoring
314the remaining @var{conditions}.
315
316If all the @var{conditions} turn out non-@code{nil}, then the value of
317the last of them becomes the value of the @code{and} form. Just
318@code{(and)}, with no @var{conditions}, returns @code{t}, appropriate
319because all the @var{conditions} turned out non-@code{nil}. (Think
320about it; which one did not?)
321
322Here is an example. The first condition returns the integer 1, which is
323not @code{nil}. Similarly, the second condition returns the integer 2,
324which is not @code{nil}. The third condition is @code{nil}, so the
325remaining condition is never evaluated.
326
327@example
328@group
329(and (print 1) (print 2) nil (print 3))
330 @print{} 1
331 @print{} 2
332@result{} nil
333@end group
334@end example
335
336Here is a more realistic example of using @code{and}:
337
338@example
339@group
340(if (and (consp foo) (eq (car foo) 'x))
341 (message "foo is a list starting with x"))
342@end group
343@end example
344
345@noindent
346Note that @code{(car foo)} is not executed if @code{(consp foo)} returns
347@code{nil}, thus avoiding an error.
348
349@code{and} expressions can also be written using either @code{if} or
350@code{cond}. Here's how:
351
352@example
353@group
354(and @var{arg1} @var{arg2} @var{arg3})
355@equiv{}
356(if @var{arg1} (if @var{arg2} @var{arg3}))
357@equiv{}
358(cond (@var{arg1} (cond (@var{arg2} @var{arg3}))))
359@end group
360@end example
361@end defspec
362
363@defspec or conditions@dots{}
364The @code{or} special form tests whether at least one of the
365@var{conditions} is true. It works by evaluating all the
366@var{conditions} one by one in the order written.
367
368If any of the @var{conditions} evaluates to a non-@code{nil} value, then
369the result of the @code{or} must be non-@code{nil}; so @code{or} returns
370right away, ignoring the remaining @var{conditions}. The value it
371returns is the non-@code{nil} value of the condition just evaluated.
372
373If all the @var{conditions} turn out @code{nil}, then the @code{or}
374expression returns @code{nil}. Just @code{(or)}, with no
375@var{conditions}, returns @code{nil}, appropriate because all the
376@var{conditions} turned out @code{nil}. (Think about it; which one
377did not?)
378
379For example, this expression tests whether @code{x} is either
380@code{nil} or the integer zero:
381
382@example
383(or (eq x nil) (eq x 0))
384@end example
385
386Like the @code{and} construct, @code{or} can be written in terms of
387@code{cond}. For example:
388
389@example
390@group
391(or @var{arg1} @var{arg2} @var{arg3})
392@equiv{}
393(cond (@var{arg1})
394 (@var{arg2})
395 (@var{arg3}))
396@end group
397@end example
398
399You could almost write @code{or} in terms of @code{if}, but not quite:
400
401@example
402@group
403(if @var{arg1} @var{arg1}
404 (if @var{arg2} @var{arg2}
405 @var{arg3}))
406@end group
407@end example
408
409@noindent
410This is not completely equivalent because it can evaluate @var{arg1} or
411@var{arg2} twice. By contrast, @code{(or @var{arg1} @var{arg2}
412@var{arg3})} never evaluates any argument more than once.
413@end defspec
414
415@node Iteration
416@section Iteration
417@cindex iteration
418@cindex recursion
419
420 Iteration means executing part of a program repetitively. For
421example, you might want to repeat some computation once for each element
422of a list, or once for each integer from 0 to @var{n}. You can do this
423in Emacs Lisp with the special form @code{while}:
424
425@defspec while condition forms@dots{}
426@code{while} first evaluates @var{condition}. If the result is
427non-@code{nil}, it evaluates @var{forms} in textual order. Then it
428reevaluates @var{condition}, and if the result is non-@code{nil}, it
429evaluates @var{forms} again. This process repeats until @var{condition}
430evaluates to @code{nil}.
431
432There is no limit on the number of iterations that may occur. The loop
433will continue until either @var{condition} evaluates to @code{nil} or
434until an error or @code{throw} jumps out of it (@pxref{Nonlocal Exits}).
435
436The value of a @code{while} form is always @code{nil}.
437
438@example
439@group
440(setq num 0)
441 @result{} 0
442@end group
443@group
444(while (< num 4)
445 (princ (format "Iteration %d." num))
446 (setq num (1+ num)))
447 @print{} Iteration 0.
448 @print{} Iteration 1.
449 @print{} Iteration 2.
450 @print{} Iteration 3.
451 @result{} nil
452@end group
453@end example
454
455To write a ``repeat...until'' loop, which will execute something on each
456iteration and then do the end-test, put the body followed by the
457end-test in a @code{progn} as the first argument of @code{while}, as
458shown here:
459
460@example
461@group
462(while (progn
463 (forward-line 1)
464 (not (looking-at "^$"))))
465@end group
466@end example
467
468@noindent
469This moves forward one line and continues moving by lines until it
470reaches an empty line. It is peculiar in that the @code{while} has no
471body, just the end test (which also does the real work of moving point).
472@end defspec
473
474 The @code{dolist} and @code{dotimes} macros provide convenient ways to
475write two common kinds of loops.
476
477@defmac dolist (var list [result]) body@dots{}
478This construct executes @var{body} once for each element of
479@var{list}, binding the variable @var{var} locally to hold the current
480element. Then it returns the value of evaluating @var{result}, or
481@code{nil} if @var{result} is omitted. For example, here is how you
482could use @code{dolist} to define the @code{reverse} function:
483
484@example
485(defun reverse (list)
486 (let (value)
487 (dolist (elt list value)
488 (setq value (cons elt value)))))
489@end example
490@end defmac
491
492@defmac dotimes (var count [result]) body@dots{}
493This construct executes @var{body} once for each integer from 0
494(inclusive) to @var{count} (exclusive), binding the variable @var{var}
495to the integer for the current iteration. Then it returns the value
496of evaluating @var{result}, or @code{nil} if @var{result} is omitted.
497Here is an example of using @code{dotimes} to do something 100 times:
498
499@example
500(dotimes (i 100)
501 (insert "I will not obey absurd orders\n"))
502@end example
503@end defmac
504
505@node Nonlocal Exits
506@section Nonlocal Exits
507@cindex nonlocal exits
508
509 A @dfn{nonlocal exit} is a transfer of control from one point in a
510program to another remote point. Nonlocal exits can occur in Emacs Lisp
511as a result of errors; you can also use them under explicit control.
512Nonlocal exits unbind all variable bindings made by the constructs being
513exited.
514
515@menu
516* Catch and Throw:: Nonlocal exits for the program's own purposes.
517* Examples of Catch:: Showing how such nonlocal exits can be written.
518* Errors:: How errors are signaled and handled.
519* Cleanups:: Arranging to run a cleanup form if an error happens.
520@end menu
521
522@node Catch and Throw
523@subsection Explicit Nonlocal Exits: @code{catch} and @code{throw}
524
525 Most control constructs affect only the flow of control within the
526construct itself. The function @code{throw} is the exception to this
527rule of normal program execution: it performs a nonlocal exit on
528request. (There are other exceptions, but they are for error handling
529only.) @code{throw} is used inside a @code{catch}, and jumps back to
530that @code{catch}. For example:
531
532@example
533@group
534(defun foo-outer ()
535 (catch 'foo
536 (foo-inner)))
537
538(defun foo-inner ()
539 @dots{}
540 (if x
541 (throw 'foo t))
542 @dots{})
543@end group
544@end example
545
546@noindent
547The @code{throw} form, if executed, transfers control straight back to
548the corresponding @code{catch}, which returns immediately. The code
549following the @code{throw} is not executed. The second argument of
550@code{throw} is used as the return value of the @code{catch}.
551
552 The function @code{throw} finds the matching @code{catch} based on the
553first argument: it searches for a @code{catch} whose first argument is
554@code{eq} to the one specified in the @code{throw}. If there is more
555than one applicable @code{catch}, the innermost one takes precedence.
556Thus, in the above example, the @code{throw} specifies @code{foo}, and
557the @code{catch} in @code{foo-outer} specifies the same symbol, so that
558@code{catch} is the applicable one (assuming there is no other matching
559@code{catch} in between).
560
561 Executing @code{throw} exits all Lisp constructs up to the matching
562@code{catch}, including function calls. When binding constructs such as
563@code{let} or function calls are exited in this way, the bindings are
564unbound, just as they are when these constructs exit normally
565(@pxref{Local Variables}). Likewise, @code{throw} restores the buffer
566and position saved by @code{save-excursion} (@pxref{Excursions}), and
567the narrowing status saved by @code{save-restriction} and the window
568selection saved by @code{save-window-excursion} (@pxref{Window
569Configurations}). It also runs any cleanups established with the
570@code{unwind-protect} special form when it exits that form
571(@pxref{Cleanups}).
572
573 The @code{throw} need not appear lexically within the @code{catch}
574that it jumps to. It can equally well be called from another function
575called within the @code{catch}. As long as the @code{throw} takes place
576chronologically after entry to the @code{catch}, and chronologically
577before exit from it, it has access to that @code{catch}. This is why
578@code{throw} can be used in commands such as @code{exit-recursive-edit}
579that throw back to the editor command loop (@pxref{Recursive Editing}).
580
581@cindex CL note---only @code{throw} in Emacs
582@quotation
583@b{Common Lisp note:} Most other versions of Lisp, including Common Lisp,
584have several ways of transferring control nonsequentially: @code{return},
585@code{return-from}, and @code{go}, for example. Emacs Lisp has only
586@code{throw}.
587@end quotation
588
589@defspec catch tag body@dots{}
590@cindex tag on run time stack
591@code{catch} establishes a return point for the @code{throw} function.
592The return point is distinguished from other such return points by
593@var{tag}, which may be any Lisp object except @code{nil}. The argument
594@var{tag} is evaluated normally before the return point is established.
595
596With the return point in effect, @code{catch} evaluates the forms of the
597@var{body} in textual order. If the forms execute normally (without
598error or nonlocal exit) the value of the last body form is returned from
599the @code{catch}.
600
601If a @code{throw} is executed during the execution of @var{body},
602specifying the same value @var{tag}, the @code{catch} form exits
603immediately; the value it returns is whatever was specified as the
604second argument of @code{throw}.
605@end defspec
606
607@defun throw tag value
608The purpose of @code{throw} is to return from a return point previously
609established with @code{catch}. The argument @var{tag} is used to choose
610among the various existing return points; it must be @code{eq} to the value
611specified in the @code{catch}. If multiple return points match @var{tag},
612the innermost one is used.
613
614The argument @var{value} is used as the value to return from that
615@code{catch}.
616
617@kindex no-catch
618If no return point is in effect with tag @var{tag}, then a @code{no-catch}
619error is signaled with data @code{(@var{tag} @var{value})}.
620@end defun
621
622@node Examples of Catch
623@subsection Examples of @code{catch} and @code{throw}
624
625 One way to use @code{catch} and @code{throw} is to exit from a doubly
626nested loop. (In most languages, this would be done with a ``go to.'')
627Here we compute @code{(foo @var{i} @var{j})} for @var{i} and @var{j}
628varying from 0 to 9:
629
630@example
631@group
632(defun search-foo ()
633 (catch 'loop
634 (let ((i 0))
635 (while (< i 10)
636 (let ((j 0))
637 (while (< j 10)
638 (if (foo i j)
639 (throw 'loop (list i j)))
640 (setq j (1+ j))))
641 (setq i (1+ i))))))
642@end group
643@end example
644
645@noindent
646If @code{foo} ever returns non-@code{nil}, we stop immediately and return a
647list of @var{i} and @var{j}. If @code{foo} always returns @code{nil}, the
648@code{catch} returns normally, and the value is @code{nil}, since that
649is the result of the @code{while}.
650
651 Here are two tricky examples, slightly different, showing two
652return points at once. First, two return points with the same tag,
653@code{hack}:
654
655@example
656@group
657(defun catch2 (tag)
658 (catch tag
659 (throw 'hack 'yes)))
660@result{} catch2
661@end group
662
663@group
664(catch 'hack
665 (print (catch2 'hack))
666 'no)
667@print{} yes
668@result{} no
669@end group
670@end example
671
672@noindent
673Since both return points have tags that match the @code{throw}, it goes to
674the inner one, the one established in @code{catch2}. Therefore,
675@code{catch2} returns normally with value @code{yes}, and this value is
676printed. Finally the second body form in the outer @code{catch}, which is
677@code{'no}, is evaluated and returned from the outer @code{catch}.
678
679 Now let's change the argument given to @code{catch2}:
680
681@example
682@group
683(catch 'hack
684 (print (catch2 'quux))
685 'no)
686@result{} yes
687@end group
688@end example
689
690@noindent
691We still have two return points, but this time only the outer one has
692the tag @code{hack}; the inner one has the tag @code{quux} instead.
693Therefore, @code{throw} makes the outer @code{catch} return the value
694@code{yes}. The function @code{print} is never called, and the
695body-form @code{'no} is never evaluated.
696
697@node Errors
698@subsection Errors
699@cindex errors
700
701 When Emacs Lisp attempts to evaluate a form that, for some reason,
702cannot be evaluated, it @dfn{signals} an @dfn{error}.
703
704 When an error is signaled, Emacs's default reaction is to print an
705error message and terminate execution of the current command. This is
706the right thing to do in most cases, such as if you type @kbd{C-f} at
707the end of the buffer.
708
709 In complicated programs, simple termination may not be what you want.
710For example, the program may have made temporary changes in data
711structures, or created temporary buffers that should be deleted before
712the program is finished. In such cases, you would use
713@code{unwind-protect} to establish @dfn{cleanup expressions} to be
714evaluated in case of error. (@xref{Cleanups}.) Occasionally, you may
715wish the program to continue execution despite an error in a subroutine.
716In these cases, you would use @code{condition-case} to establish
717@dfn{error handlers} to recover control in case of error.
718
719 Resist the temptation to use error handling to transfer control from
720one part of the program to another; use @code{catch} and @code{throw}
721instead. @xref{Catch and Throw}.
722
723@menu
724* Signaling Errors:: How to report an error.
725* Processing of Errors:: What Emacs does when you report an error.
726* Handling Errors:: How you can trap errors and continue execution.
727* Error Symbols:: How errors are classified for trapping them.
728@end menu
729
730@node Signaling Errors
731@subsubsection How to Signal an Error
732@cindex signaling errors
733
734 @dfn{Signaling} an error means beginning error processing. Error
735processing normally aborts all or part of the running program and
736returns to a point that is set up to handle the error
737(@pxref{Processing of Errors}). Here we describe how to signal an
738error.
739
740 Most errors are signaled ``automatically'' within Lisp primitives
741which you call for other purposes, such as if you try to take the
742@sc{car} of an integer or move forward a character at the end of the
743buffer. You can also signal errors explicitly with the functions
744@code{error} and @code{signal}.
745
746 Quitting, which happens when the user types @kbd{C-g}, is not
747considered an error, but it is handled almost like an error.
748@xref{Quitting}.
749
750 Every error specifies an error message, one way or another. The
751message should state what is wrong (``File does not exist''), not how
752things ought to be (``File must exist''). The convention in Emacs
753Lisp is that error messages should start with a capital letter, but
754should not end with any sort of punctuation.
755
756@defun error format-string &rest args
757This function signals an error with an error message constructed by
758applying @code{format} (@pxref{Formatting Strings}) to
759@var{format-string} and @var{args}.
760
761These examples show typical uses of @code{error}:
762
763@example
764@group
765(error "That is an error -- try something else")
766 @error{} That is an error -- try something else
767@end group
768
769@group
770(error "You have committed %d errors" 10)
771 @error{} You have committed 10 errors
772@end group
773@end example
774
775@code{error} works by calling @code{signal} with two arguments: the
776error symbol @code{error}, and a list containing the string returned by
777@code{format}.
778
779@strong{Warning:} If you want to use your own string as an error message
780verbatim, don't just write @code{(error @var{string})}. If @var{string}
781contains @samp{%}, it will be interpreted as a format specifier, with
782undesirable results. Instead, use @code{(error "%s" @var{string})}.
783@end defun
784
785@defun signal error-symbol data
786@anchor{Definition of signal}
787This function signals an error named by @var{error-symbol}. The
788argument @var{data} is a list of additional Lisp objects relevant to
789the circumstances of the error.
790
791The argument @var{error-symbol} must be an @dfn{error symbol}---a symbol
792bearing a property @code{error-conditions} whose value is a list of
793condition names. This is how Emacs Lisp classifies different sorts of
794errors. @xref{Error Symbols}, for a description of error symbols,
795error conditions and condition names.
796
797If the error is not handled, the two arguments are used in printing
798the error message. Normally, this error message is provided by the
799@code{error-message} property of @var{error-symbol}. If @var{data} is
800non-@code{nil}, this is followed by a colon and a comma separated list
801of the unevaluated elements of @var{data}. For @code{error}, the
802error message is the @sc{car} of @var{data} (that must be a string).
803Subcategories of @code{file-error} are handled specially.
804
805The number and significance of the objects in @var{data} depends on
59f80054 806@var{error-symbol}. For example, with a @code{wrong-type-argument} error,
b8d4c8d0
GM
807there should be two objects in the list: a predicate that describes the type
808that was expected, and the object that failed to fit that type.
809
810Both @var{error-symbol} and @var{data} are available to any error
811handlers that handle the error: @code{condition-case} binds a local
812variable to a list of the form @code{(@var{error-symbol} .@:
813@var{data})} (@pxref{Handling Errors}).
814
815The function @code{signal} never returns (though in older Emacs versions
816it could sometimes return).
817
818@smallexample
819@group
820(signal 'wrong-number-of-arguments '(x y))
821 @error{} Wrong number of arguments: x, y
822@end group
823
824@group
825(signal 'no-such-error '("My unknown error condition"))
826 @error{} peculiar error: "My unknown error condition"
827@end group
828@end smallexample
829@end defun
830
831@cindex CL note---no continuable errors
832@quotation
833@b{Common Lisp note:} Emacs Lisp has nothing like the Common Lisp
834concept of continuable errors.
835@end quotation
836
837@node Processing of Errors
838@subsubsection How Emacs Processes Errors
839
840When an error is signaled, @code{signal} searches for an active
841@dfn{handler} for the error. A handler is a sequence of Lisp
842expressions designated to be executed if an error happens in part of the
843Lisp program. If the error has an applicable handler, the handler is
844executed, and control resumes following the handler. The handler
845executes in the environment of the @code{condition-case} that
846established it; all functions called within that @code{condition-case}
847have already been exited, and the handler cannot return to them.
848
849If there is no applicable handler for the error, it terminates the
850current command and returns control to the editor command loop. (The
851command loop has an implicit handler for all kinds of errors.) The
852command loop's handler uses the error symbol and associated data to
853print an error message. You can use the variable
854@code{command-error-function} to control how this is done:
855
856@defvar command-error-function
857This variable, if non-@code{nil}, specifies a function to use to
858handle errors that return control to the Emacs command loop. The
859function should take three arguments: @var{data}, a list of the same
860form that @code{condition-case} would bind to its variable;
861@var{context}, a string describing the situation in which the error
862occurred, or (more often) @code{nil}; and @var{caller}, the Lisp
863function which called the primitive that signaled the error.
864@end defvar
865
866@cindex @code{debug-on-error} use
867An error that has no explicit handler may call the Lisp debugger. The
868debugger is enabled if the variable @code{debug-on-error} (@pxref{Error
869Debugging}) is non-@code{nil}. Unlike error handlers, the debugger runs
870in the environment of the error, so that you can examine values of
871variables precisely as they were at the time of the error.
872
873@node Handling Errors
874@subsubsection Writing Code to Handle Errors
875@cindex error handler
876@cindex handling errors
877
878 The usual effect of signaling an error is to terminate the command
879that is running and return immediately to the Emacs editor command loop.
880You can arrange to trap errors occurring in a part of your program by
881establishing an error handler, with the special form
882@code{condition-case}. A simple example looks like this:
883
884@example
885@group
886(condition-case nil
887 (delete-file filename)
888 (error nil))
889@end group
890@end example
891
892@noindent
893This deletes the file named @var{filename}, catching any error and
a33a1f2a
EZ
894returning @code{nil} if an error occurs@footnote{
895Actually, you should use @code{ignore-errors} in such a simple case;
896see below.}.
b8d4c8d0
GM
897
898 The @code{condition-case} construct is often used to trap errors that
899are predictable, such as failure to open a file in a call to
900@code{insert-file-contents}. It is also used to trap errors that are
901totally unpredictable, such as when the program evaluates an expression
902read from the user.
903
904 The second argument of @code{condition-case} is called the
905@dfn{protected form}. (In the example above, the protected form is a
906call to @code{delete-file}.) The error handlers go into effect when
907this form begins execution and are deactivated when this form returns.
908They remain in effect for all the intervening time. In particular, they
909are in effect during the execution of functions called by this form, in
910their subroutines, and so on. This is a good thing, since, strictly
911speaking, errors can be signaled only by Lisp primitives (including
912@code{signal} and @code{error}) called by the protected form, not by the
913protected form itself.
914
915 The arguments after the protected form are handlers. Each handler
916lists one or more @dfn{condition names} (which are symbols) to specify
917which errors it will handle. The error symbol specified when an error
918is signaled also defines a list of condition names. A handler applies
919to an error if they have any condition names in common. In the example
920above, there is one handler, and it specifies one condition name,
921@code{error}, which covers all errors.
922
923 The search for an applicable handler checks all the established handlers
924starting with the most recently established one. Thus, if two nested
925@code{condition-case} forms offer to handle the same error, the inner of
926the two gets to handle it.
927
928 If an error is handled by some @code{condition-case} form, this
929ordinarily prevents the debugger from being run, even if
930@code{debug-on-error} says this error should invoke the debugger.
931
932 If you want to be able to debug errors that are caught by a
933@code{condition-case}, set the variable @code{debug-on-signal} to a
934non-@code{nil} value. You can also specify that a particular handler
935should let the debugger run first, by writing @code{debug} among the
936conditions, like this:
937
938@example
939@group
940(condition-case nil
941 (delete-file filename)
942 ((debug error) nil))
943@end group
944@end example
945
946@noindent
947The effect of @code{debug} here is only to prevent
948@code{condition-case} from suppressing the call to the debugger. Any
949given error will invoke the debugger only if @code{debug-on-error} and
950the other usual filtering mechanisms say it should. @xref{Error Debugging}.
951
952 Once Emacs decides that a certain handler handles the error, it
953returns control to that handler. To do so, Emacs unbinds all variable
954bindings made by binding constructs that are being exited, and
955executes the cleanups of all @code{unwind-protect} forms that are
956being exited. Once control arrives at the handler, the body of the
957handler executes normally.
958
959 After execution of the handler body, execution returns from the
960@code{condition-case} form. Because the protected form is exited
961completely before execution of the handler, the handler cannot resume
962execution at the point of the error, nor can it examine variable
963bindings that were made within the protected form. All it can do is
964clean up and proceed.
965
966 Error signaling and handling have some resemblance to @code{throw} and
967@code{catch} (@pxref{Catch and Throw}), but they are entirely separate
968facilities. An error cannot be caught by a @code{catch}, and a
969@code{throw} cannot be handled by an error handler (though using
970@code{throw} when there is no suitable @code{catch} signals an error
971that can be handled).
972
973@defspec condition-case var protected-form handlers@dots{}
974This special form establishes the error handlers @var{handlers} around
975the execution of @var{protected-form}. If @var{protected-form} executes
976without error, the value it returns becomes the value of the
977@code{condition-case} form; in this case, the @code{condition-case} has
978no effect. The @code{condition-case} form makes a difference when an
979error occurs during @var{protected-form}.
980
981Each of the @var{handlers} is a list of the form @code{(@var{conditions}
982@var{body}@dots{})}. Here @var{conditions} is an error condition name
983to be handled, or a list of condition names (which can include @code{debug}
984to allow the debugger to run before the handler); @var{body} is one or more
985Lisp expressions to be executed when this handler handles an error.
986Here are examples of handlers:
987
988@smallexample
989@group
990(error nil)
991
992(arith-error (message "Division by zero"))
993
994((arith-error file-error)
995 (message
996 "Either division by zero or failure to open a file"))
997@end group
998@end smallexample
999
1000Each error that occurs has an @dfn{error symbol} that describes what
1001kind of error it is. The @code{error-conditions} property of this
1002symbol is a list of condition names (@pxref{Error Symbols}). Emacs
1003searches all the active @code{condition-case} forms for a handler that
1004specifies one or more of these condition names; the innermost matching
1005@code{condition-case} handles the error. Within this
1006@code{condition-case}, the first applicable handler handles the error.
1007
1008After executing the body of the handler, the @code{condition-case}
1009returns normally, using the value of the last form in the handler body
1010as the overall value.
1011
1012@cindex error description
1013The argument @var{var} is a variable. @code{condition-case} does not
1014bind this variable when executing the @var{protected-form}, only when it
1015handles an error. At that time, it binds @var{var} locally to an
1016@dfn{error description}, which is a list giving the particulars of the
1017error. The error description has the form @code{(@var{error-symbol}
1018. @var{data})}. The handler can refer to this list to decide what to
1019do. For example, if the error is for failure opening a file, the file
1020name is the second element of @var{data}---the third element of the
1021error description.
1022
1023If @var{var} is @code{nil}, that means no variable is bound. Then the
1024error symbol and associated data are not available to the handler.
7a1831cf
EZ
1025
1026@cindex rethrow a signal
1027Sometimes it is necessary to re-throw a signal caught by
1028@code{condition-case}, for some outer-level handler to catch. Here's
1029how to do that:
1030
1031@smallexample
1032 (signal (car err) (cdr err))
1033@end smallexample
1034
1035@noindent
1036where @code{err} is the error description variable, the first argument
1037to @code{condition-case} whose error condition you want to re-throw.
1038@xref{Definition of signal}.
b8d4c8d0
GM
1039@end defspec
1040
ee301a7a 1041@defun error-message-string error-descriptor
b8d4c8d0
GM
1042This function returns the error message string for a given error
1043descriptor. It is useful if you want to handle an error by printing the
1044usual error message for that error. @xref{Definition of signal}.
1045@end defun
1046
1047@cindex @code{arith-error} example
1048Here is an example of using @code{condition-case} to handle the error
1049that results from dividing by zero. The handler displays the error
1050message (but without a beep), then returns a very large number.
1051
1052@smallexample
1053@group
1054(defun safe-divide (dividend divisor)
1055 (condition-case err
1056 ;; @r{Protected form.}
1057 (/ dividend divisor)
1058@end group
1059@group
1060 ;; @r{The handler.}
1061 (arith-error ; @r{Condition.}
1062 ;; @r{Display the usual message for this error.}
1063 (message "%s" (error-message-string err))
1064 1000000)))
1065@result{} safe-divide
1066@end group
1067
1068@group
1069(safe-divide 5 0)
1070 @print{} Arithmetic error: (arith-error)
1071@result{} 1000000
1072@end group
1073@end smallexample
1074
1075@noindent
1076The handler specifies condition name @code{arith-error} so that it will handle only division-by-zero errors. Other kinds of errors will not be handled, at least not by this @code{condition-case}. Thus,
1077
1078@smallexample
1079@group
1080(safe-divide nil 3)
1081 @error{} Wrong type argument: number-or-marker-p, nil
1082@end group
1083@end smallexample
1084
1085 Here is a @code{condition-case} that catches all kinds of errors,
1086including those signaled with @code{error}:
1087
1088@smallexample
1089@group
1090(setq baz 34)
1091 @result{} 34
1092@end group
1093
1094@group
1095(condition-case err
1096 (if (eq baz 35)
1097 t
1098 ;; @r{This is a call to the function @code{error}.}
1099 (error "Rats! The variable %s was %s, not 35" 'baz baz))
1100 ;; @r{This is the handler; it is not a form.}
1101 (error (princ (format "The error was: %s" err))
1102 2))
1103@print{} The error was: (error "Rats! The variable baz was 34, not 35")
1104@result{} 2
1105@end group
1106@end smallexample
1107
a33a1f2a
EZ
1108@defmac ignore-errors body@dots{}
1109This construct executes @var{body}, ignoring any errors that occur
1110during its execution. If the execution is without error,
1111@code{ignore-errors} returns the value of the last form in @var{body};
1112otherwise, it returns @code{nil}.
1113
1114Here's the example at the beginning of this subsection rewritten using
1115@code{ignore-errors}:
1116
1117@smallexample
1118@group
1119 (ignore-errors
1120 (delete-file filename))
1121@end group
1122@end smallexample
1123@end defmac
1124
7a1831cf 1125
b8d4c8d0
GM
1126@node Error Symbols
1127@subsubsection Error Symbols and Condition Names
1128@cindex error symbol
1129@cindex error name
1130@cindex condition name
1131@cindex user-defined error
1132@kindex error-conditions
1133
1134 When you signal an error, you specify an @dfn{error symbol} to specify
1135the kind of error you have in mind. Each error has one and only one
1136error symbol to categorize it. This is the finest classification of
1137errors defined by the Emacs Lisp language.
1138
1139 These narrow classifications are grouped into a hierarchy of wider
1140classes called @dfn{error conditions}, identified by @dfn{condition
1141names}. The narrowest such classes belong to the error symbols
1142themselves: each error symbol is also a condition name. There are also
1143condition names for more extensive classes, up to the condition name
1144@code{error} which takes in all kinds of errors (but not @code{quit}).
1145Thus, each error has one or more condition names: @code{error}, the
1146error symbol if that is distinct from @code{error}, and perhaps some
1147intermediate classifications.
1148
1149 In order for a symbol to be an error symbol, it must have an
1150@code{error-conditions} property which gives a list of condition names.
1151This list defines the conditions that this kind of error belongs to.
1152(The error symbol itself, and the symbol @code{error}, should always be
1153members of this list.) Thus, the hierarchy of condition names is
1154defined by the @code{error-conditions} properties of the error symbols.
1155Because quitting is not considered an error, the value of the
1156@code{error-conditions} property of @code{quit} is just @code{(quit)}.
1157
1158@cindex peculiar error
1159 In addition to the @code{error-conditions} list, the error symbol
1160should have an @code{error-message} property whose value is a string to
1161be printed when that error is signaled but not handled. If the
1162error symbol has no @code{error-message} property or if the
1163@code{error-message} property exists, but is not a string, the error
1164message @samp{peculiar error} is used. @xref{Definition of signal}.
1165
1166 Here is how we define a new error symbol, @code{new-error}:
1167
1168@example
1169@group
1170(put 'new-error
1171 'error-conditions
1172 '(error my-own-errors new-error))
1173@result{} (error my-own-errors new-error)
1174@end group
1175@group
1176(put 'new-error 'error-message "A new error")
1177@result{} "A new error"
1178@end group
1179@end example
1180
1181@noindent
1182This error has three condition names: @code{new-error}, the narrowest
1183classification; @code{my-own-errors}, which we imagine is a wider
1184classification; and @code{error}, which is the widest of all.
1185
1186 The error string should start with a capital letter but it should
1187not end with a period. This is for consistency with the rest of Emacs.
1188
1189 Naturally, Emacs will never signal @code{new-error} on its own; only
1190an explicit call to @code{signal} (@pxref{Definition of signal}) in
1191your code can do this:
1192
1193@example
1194@group
1195(signal 'new-error '(x y))
1196 @error{} A new error: x, y
1197@end group
1198@end example
1199
1200 This error can be handled through any of the three condition names.
1201This example handles @code{new-error} and any other errors in the class
1202@code{my-own-errors}:
1203
1204@example
1205@group
1206(condition-case foo
1207 (bar nil t)
1208 (my-own-errors nil))
1209@end group
1210@end example
1211
1212 The significant way that errors are classified is by their condition
1213names---the names used to match errors with handlers. An error symbol
1214serves only as a convenient way to specify the intended error message
1215and list of condition names. It would be cumbersome to give
1216@code{signal} a list of condition names rather than one error symbol.
1217
1218 By contrast, using only error symbols without condition names would
1219seriously decrease the power of @code{condition-case}. Condition names
1220make it possible to categorize errors at various levels of generality
1221when you write an error handler. Using error symbols alone would
1222eliminate all but the narrowest level of classification.
1223
1224 @xref{Standard Errors}, for a list of all the standard error symbols
1225and their conditions.
1226
1227@node Cleanups
1228@subsection Cleaning Up from Nonlocal Exits
1229
1230 The @code{unwind-protect} construct is essential whenever you
1231temporarily put a data structure in an inconsistent state; it permits
1232you to make the data consistent again in the event of an error or
1233throw. (Another more specific cleanup construct that is used only for
1234changes in buffer contents is the atomic change group; @ref{Atomic
1235Changes}.)
1236
1237@defspec unwind-protect body-form cleanup-forms@dots{}
1238@cindex cleanup forms
1239@cindex protected forms
1240@cindex error cleanup
1241@cindex unwinding
1242@code{unwind-protect} executes @var{body-form} with a guarantee that
1243the @var{cleanup-forms} will be evaluated if control leaves
1244@var{body-form}, no matter how that happens. @var{body-form} may
1245complete normally, or execute a @code{throw} out of the
1246@code{unwind-protect}, or cause an error; in all cases, the
1247@var{cleanup-forms} will be evaluated.
1248
1249If @var{body-form} finishes normally, @code{unwind-protect} returns the
1250value of @var{body-form}, after it evaluates the @var{cleanup-forms}.
1251If @var{body-form} does not finish, @code{unwind-protect} does not
1252return any value in the normal sense.
1253
1254Only @var{body-form} is protected by the @code{unwind-protect}. If any
1255of the @var{cleanup-forms} themselves exits nonlocally (via a
1256@code{throw} or an error), @code{unwind-protect} is @emph{not}
1257guaranteed to evaluate the rest of them. If the failure of one of the
1258@var{cleanup-forms} has the potential to cause trouble, then protect
1259it with another @code{unwind-protect} around that form.
1260
1261The number of currently active @code{unwind-protect} forms counts,
1262together with the number of local variable bindings, against the limit
1263@code{max-specpdl-size} (@pxref{Definition of max-specpdl-size,, Local
1264Variables}).
1265@end defspec
1266
1267 For example, here we make an invisible buffer for temporary use, and
1268make sure to kill it before finishing:
1269
1270@smallexample
1271@group
c57008f6
SM
1272(let ((buffer (get-buffer-create " *temp*")))
1273 (with-current-buffer buffer
b8d4c8d0
GM
1274 (unwind-protect
1275 @var{body-form}
1276 (kill-buffer buffer))))
1277@end group
1278@end smallexample
1279
1280@noindent
1281You might think that we could just as well write @code{(kill-buffer
1282(current-buffer))} and dispense with the variable @code{buffer}.
1283However, the way shown above is safer, if @var{body-form} happens to
1284get an error after switching to a different buffer! (Alternatively,
c57008f6 1285you could write a @code{save-current-buffer} around @var{body-form},
b8d4c8d0
GM
1286to ensure that the temporary buffer becomes current again in time to
1287kill it.)
1288
1289 Emacs includes a standard macro called @code{with-temp-buffer} which
1290expands into more or less the code shown above (@pxref{Definition of
1291with-temp-buffer,, Current Buffer}). Several of the macros defined in
1292this manual use @code{unwind-protect} in this way.
1293
1294@findex ftp-login
1295 Here is an actual example derived from an FTP package. It creates a
1296process (@pxref{Processes}) to try to establish a connection to a remote
1297machine. As the function @code{ftp-login} is highly susceptible to
1298numerous problems that the writer of the function cannot anticipate, it
1299is protected with a form that guarantees deletion of the process in the
1300event of failure. Otherwise, Emacs might fill up with useless
1301subprocesses.
1302
1303@smallexample
1304@group
1305(let ((win nil))
1306 (unwind-protect
1307 (progn
1308 (setq process (ftp-setup-buffer host file))
1309 (if (setq win (ftp-login process host user password))
1310 (message "Logged in")
1311 (error "Ftp login failed")))
1312 (or win (and process (delete-process process)))))
1313@end group
1314@end smallexample
1315
1316 This example has a small bug: if the user types @kbd{C-g} to
1317quit, and the quit happens immediately after the function
1318@code{ftp-setup-buffer} returns but before the variable @code{process} is
1319set, the process will not be killed. There is no easy way to fix this bug,
1320but at least it is very unlikely.