annotate lispref/control.texi @ 90105:7e3f621f1dd4

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