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