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