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