Control Structures
A Lisp program consists of a set of expressions, or forms (Forms). We control the order of execution of these forms by enclosing them in control structures. Control structures are special forms which control when, whether, or how many times to execute the forms they contain. The simplest order of execution is sequential execution: first form a, then form b, and so on. This is what happens when you write several forms in succession in the body of a function, or at top level in a file of Lisp code—the forms are executed in the order written. We call this textual order. For example, if a function body consists of two forms a and b, evaluation of the function evaluates first a and then b. The result of evaluating b becomes the value of the function. Explicit control structures make possible an order of execution other than sequential. Emacs Lisp provides several kinds of control structure, including other varieties of sequencing, conditionals, iteration, and (controlled) jumps—all discussed below. The built-in control structures are special forms since their subforms are not necessarily evaluated or not evaluated sequentially. You can use macros to define your own control structure constructs (Macros).
Sequencing
Evaluating forms in the order they appear is the most common way control passes from one form to another. In some contexts, such as in a function body, this happens automatically. Elsewhere you must use a control structure construct to do this: progn, the simplest control construct of Lisp. A progn special form looks like this:
(progn A B C ...)
and it says to execute the forms a, b, c, and so on, in that order. These forms are called the body of the progn form. The value of the last form in the body becomes the value of the entire progn. (progn) returns nil. In the early days of Lisp, progn was the only way to execute two or more forms in succession and use the value of the last of them. But programmers found they often needed to use a progn in the body of a function, where (at that time) only one form was allowed. So the body of a function was made into an implicit progn: several forms are allowed just as in the body of an actual progn. Many other control structures likewise contain an implicit progn. As a result, progn is not used as much as it was many years ago. It is needed now most often inside an unwind-protect, and, or, or in the then-part of an if.
-
progn - This special form evaluates all of the forms, in textual order, returning the result of the final form.
(progn (print "The first form")
(print "The second form")
(print "The third form"))
-| "The first form"
-| "The second form"
-| "The third form"
=> "The third form"
Two other constructs likewise evaluate a series of forms but return different values:
-
prog1 - This special form evaluates form1 and all of the forms, in textual order, returning the result of form1.
(prog1 (print "The first form")
(print "The second form")
(print "The third form"))
-| "The first form"
-| "The second form"
-| "The third form"
=> "The first form"
Here is a way to remove the first element from a list in the variable x, then return the value of that former element:
(prog1 (car x) (setq x (cdr x)))
-
prog2 - This special form evaluates form1, form2, and all of the following forms, in textual order, returning the result of form2.
(prog2 (print "The first form")
(print "The second form")
(print "The third form"))
-| "The first form"
-| "The second form"
-| "The third form"
=> "The second form"
Conditionals
Conditional control structures choose among alternatives. Emacs Lisp has five conditional forms: if, which is much the same as in other languages; when and unless, which are variants of if; cond, which is a generalized case statement; and pcase, which is a generalization of cond (Pattern-Matching Conditional).
-
if ifchooses between the then-form and the else-forms based on the value of condition. If the evaluated condition is non-nil, then-form is evaluated and the result returned. Otherwise, the else-forms are evaluated in textual order, and the value of the last one is returned. (The else part ofifis an example of an implicitprogn. Sequencing.) If condition has the valuenil, and no else-forms are given,ifreturnsnil.ifis a special form because the branch that is not selected is never evaluated—it is ignored. Thus, in this example,trueis not printed becauseprintis never called:
(if nil
(print 'true)
'very-false)
=> very-false
-
when - This is a variant of
ifwhere there are no else-forms, and possibly several then-forms. In particular,
(when CONDITION A B C)
is entirely equivalent to
(if CONDITION (progn A B C) nil)
-
unless - This is a variant of
ifwhere there is no then-form:
(unless CONDITION A B C)
is entirely equivalent to
(if CONDITION nil A B C)
-
cond condchooses among an arbitrary number of alternatives. Each clause in thecondmust be a list. The CAR of this list is the condition; the remaining elements, if any, the body-forms. Thus, a clause looks like this:
(CONDITION BODY-FORMS...)
cond tries the clauses in textual order, by evaluating the condition of each clause. If the value of condition is non-nil, the clause succeeds; then cond evaluates its body-forms, and returns the value of the last of body-forms. Any remaining clauses are ignored. If the value of condition is nil, the clause fails, so the cond moves on to the following clause, trying its condition. A clause may also look like this:
(CONDITION)
Then, if condition is non-nil when tested, the cond form returns the value of condition. If every condition evaluates to nil, so that every clause fails, cond returns nil. The following example has four clauses, which test for the cases where the value of x is a number, string, buffer and symbol, respectively:
(cond ((numberp x) x)
((stringp x) x)
((bufferp x)
(setq temporary-hack x) ; multiple body-forms
(buffer-name x)) ; in one clause
((symbolp x) (symbol-value x)))
Often we want to execute the last clause whenever none of the previous clauses was successful. To do this, we use t as the condition of the last clause, like this: (t BODY-FORMS). The form t evaluates to t, which is never nil, so this clause never fails, provided the cond gets to it at all. For example:
(setq a 5)
(cond ((eq a 'hack) 'foo)
(t "default"))
=> "default"
This cond expression returns foo if the value of a is hack, and returns the string "default" otherwise. Any conditional construct can be expressed with cond or with if. Therefore, the choice between them is a matter of style. For example:
(if A B C) ≡ (cond (A B) (t C))
It can be convenient to bind variables in conjunction with using a conditional. It's often the case that you compute a value, and then want to do something with that value if it's non-nil. The straightforward way to do that is to just write, for instance:
(let ((result1 (do-computation)))
(when result1
(let ((result2 (do-more result1)))
(when result2
(do-something result2)))))
Since this is a very common pattern, Emacs provides a number of macros to make this easier and more readable. The above can be written the following way instead:
(when-let ((result1 (do-computation))
(result2 (do-more result1)))
(do-something result2))
There's a number of variations on this theme, and they're briefly described below.
-
if-let - Evaluate each binding in spec in turn, like in
let*(Local Variables), stopping if a binding value isnil. If all are non-nil, return the value of then-form, otherwise the last form in else-forms. -
when-let - Like
if-let, but without else-forms. -
while-let - Like
when-let, but repeat until a binding in spec isnil. The return value is alwaysnil.
Constructs for Combining Conditions
This section describes constructs that are often used together with if and cond to express complicated conditions. The constructs and and or can also be used individually as kinds of multiple conditional constructs.
-
not - This function tests for the falsehood of condition. It returns
tif condition isnil, andnilotherwise. The functionnotis identical tonull, and we recommend using the namenullif you are testing for an empty list ornilvalue. -
and - The
andspecial form tests whether all the conditions are true. It works by evaluating the conditions one by one in the order written. If any of the conditions evaluates tonil, then the result of theandmust benilregardless of the remaining conditions; soandreturnsnilright away, ignoring the remaining conditions. If all the conditions turn out non-nil, then the value of the last of them becomes the value of theandform. Just(and), with no conditions, returnst, appropriate because all the conditions turned out non-nil. (Think about it; which one did not?) Here is an example. The first condition returns the integer 1, which is notnil. Similarly, the second condition returns the integer 2, which is notnil. The third condition isnil, so the remaining condition is never evaluated.
(and (print 1) (print 2) nil (print 3))
-| 1
-| 2
=> nil
Here is a more realistic example of using and:
(if (and (consp foo) (eq (car foo) 'x))
(message "foo is a list starting with x"))
Note that (car foo) is not executed if (consp foo) returns nil, thus avoiding an error. and expressions can also be written using either if or cond. Here's how:
(and ARG1 ARG2 ARG3) ≡ (if ARG1 (if ARG2 ARG3)) ≡ (cond (ARG1 (cond (ARG2 ARG3))))
-
or - The
orspecial form tests whether at least one of the conditions is true. It works by evaluating all the conditions one by one in the order written. If any of the conditions evaluates to a non-nilvalue, then the result of theormust be non-nil; soorreturns right away, ignoring the remaining conditions. The value it returns is the non-nilvalue of the condition just evaluated. If all the conditions turn outnil, then theorexpression returnsnil. Just(or), with no conditions, returnsnil, appropriate because all the conditions turned outnil. (Think about it; which one did not?) For example, this expression tests whetherxis eithernilor the integer zero:
(or (eq x nil) (eq x 0))
Like the and construct, or can be written in terms of cond. For example:
(or ARG1 ARG2 ARG3)
≡
(cond (ARG1)
(ARG2)
(ARG3))
You could almost write or in terms of if, but not quite:
(if ARG1 ARG1
(if ARG2 ARG2
ARG3))
This is not completely equivalent because it can evaluate arg1 or arg2 twice. By contrast, (or ARG1 ARG2 ARG3) never evaluates any argument more than once.
-
xor - This function returns the boolean exclusive-or of condition1 and condition2. That is,
xorreturnsnilif either both arguments arenil, or both are non-nil. Otherwise, it returns the value of that argument which is non-nil. Note that in contrast toor, both arguments are always evaluated.
Pattern-Matching Conditional
Aside from the four basic conditional forms, Emacs Lisp also has a pattern-matching conditional form, the pcase macro, a hybrid of cond and cl-case (Conditionals) that overcomes their limitations and introduces the pattern matching programming style. The limitations that pcase overcomes are:
- The
condform chooses among alternatives by evaluating the predicate condition of each of its clauses (Conditionals). The primary limitation is that variables let-bound in condition are not available to the clause's body-forms. Another annoyance (more an inconvenience than a limitation) is that when a series of condition predicates implement equality tests, there is a lot of repeated code. (cl-casesolves this inconvenience.) - The
cl-casemacro chooses among alternatives by evaluating the equality of its first argument against a set of specific values. Its limitations are two-fold: - The equality tests use
eql. - The values must be known and written in advance. These render
cl-caseunsuitable for strings or compound data structures (e.g., lists or vectors). (conddoesn't have these limitations, but it has others, see above.)
Conceptually, the pcase macro borrows the first-arg focus of cl-case and the clause-processing flow of cond, replacing condition with a generalization of the equality test which is a variant of pattern matching, and adding facilities so that you can concisely express a clause's predicate, and arrange to share let-bindings between a clause's predicate and body-forms. The concise expression of a predicate is known as a pattern. When the predicate, called on the value of the first arg, returns non-nil, we say that "the pattern matches the value" (or sometimes "the value matches the pattern").
The pcase macro
For background, Pattern-Matching Conditional.
-
pcase - Each clause in clauses has the form:
(PATTERN BODY-FORMS...). Evaluate expression to determine its value, expval. Find the first clause in clauses whose pattern matches expval and pass control to that clause's body-forms. If there is a match, the value ofpcaseis the value of the last of body-forms in the successful clause. Otherwise,pcaseevaluates tonil.
Each pattern has to be a pcase pattern, which can use either one of the core patterns defined below, or one of the patterns defined via pcase-defmacro (Extending pcase). The rest of this subsection describes different forms of core patterns, presents some examples, and concludes with important caveats on using the let-binding facility provided by some pattern forms. A core pattern can have the following forms:
-
_(underscore) - Matches any expval. This is also known as don't care or wildcard.
-
'VAL - Matches if expval equals val. The comparison is done as if by
equal(Equality Predicates). -
KEYWORD,INTEGER,STRING - Matches if expval equals the literal object. This is a special case of
'VAL, above, possible because literal objects of these types are self-quoting. -
SYMBOL - Matches any expval, and additionally let-binds symbol to expval, such that this binding is available to body-forms (Dynamic Binding). If symbol is part of a sequencing pattern seqpat (e.g., by using
and, below), the binding is also available to the portion of seqpat following the appearance of symbol. This usage has some caveats, see caveats. Two symbols to avoid aret, which behaves like_(above) and is deprecated, andnil, which signals an error. Likewise, it makes no sense to bind keyword symbols (Constant Variables). -
`QPAT - A backquote-style pattern. Backquote Patterns, for the details.
-
(cl-type TYPE) - Matches if expval is of type type, which is a type descriptor as accepted by
cl-typep(Type Predicates). Examples: (cl-type integer) (cl-type (integer 0 10)) -
(pred FUNCTION) - Matches if the predicate function returns non-
nilwhen called on expval. The test can be negated with the syntax(pred (not FUNCTION)). The predicate function can have one of the following forms: -
function name (a symbol) - Call the named function with one argument, expval. Example:
integerp -
lambda expression - Call the anonymous function with one argument, expval (Lambda Expressions). Example:
(lambda (n) (42 n))= -
function call with N args - Call the function (the first element of the function call) with n arguments (the other elements) and an additional n/+1-th argument that is /expval. Example:
(42)= In this example, the function is=, n is one, and the actual function call becomes:(42 EXPVAL)=. -
(app FUNCTION PATTERN) - Matches if function called on expval returns a value that matches pattern. function can take one of the forms described for
pred, above. Unlikepred, however,apptests the result against pattern, rather than against a boolean truth value. -
(guard BOOLEAN-EXPRESSION) - Matches if boolean-expression evaluates to non-
nil. -
(let PATTERN EXPR) - Evaluates expr to get exprval and matches if exprval matches pattern. (It is called
letbecause pattern can bind symbols to values using symbol.)
A sequencing pattern (also known as seqpat) is a pattern that processes its sub-pattern arguments in sequence. There are two for pcase: and and or. They behave in a similar manner to the special forms that share their name (Combining Conditions), but instead of processing values, they process sub-patterns.
-
(and PATTERN1...) - Attempts to match pattern1…, in order, until one of them fails to match. In that case,
andlikewise fails to match, and the rest of the sub-patterns are not tested. If all sub-patterns match,andmatches. -
(or PATTERN1 PATTERN2...) - Attempts to match pattern1, pattern2, …, in order, until one of them succeeds. In that case,
orlikewise matches, and the rest of the sub-patterns are not tested. To present a consistent environment (Intro Eval) to body-forms (thus avoiding an evaluation error on match), the set of variables bound by the pattern is the union of the variables bound by each sub-pattern. If a variable is not bound by the sub-pattern that matched, then it is bound tonil. -
(rx RX-EXPR...) - Matches strings against the regexp rx-expr…, using the
rxregexp notation (Rx Notation), as if bystring-match. In addition to the usualrxsyntax, rx-expr… can contain the following constructs: -
(let REF RX-EXPR...) - Bind the symbol ref to a submatch that matches rx-expr…. ref is bound in body-forms to the string of the submatch or
nil, but can also be used inbackref. -
(backref REF) - Like the standard
backrefconstruct, but ref can here also be a name introduced by a previous(let REF ...)construct.
Example: Advantage Over cl-case
Here's an example that highlights some advantages pcase has over cl-case (Conditionals).
(pcase (get-return-code x)
;; string
((and (pred stringp) msg)
(message "%s" msg))
;; symbol
('success (message "Done!"))
('would-block (message "Sorry, can't do it now"))
('read-only (message "The schmilblick is read-only"))
('access-denied (message "You do not have the needed rights"))
;; default
(code (message "Unknown return code %S" code)))
With cl-case, you would need to explicitly declare a local variable code to hold the return value of get-return-code. Also cl-case is difficult to use with strings because it uses eql for comparison.
Example: Using and
A common idiom is to write a pattern starting with and, with one or more symbol sub-patterns providing bindings to the sub-patterns that follow (as well as to the body forms). For example, the following pattern matches single-digit integers.
(and (pred integerp) n ; bind n to EXPVAL (guard (<= -9 n 9)))
First, pred matches if (integerp EXPVAL) evaluates to non-nil. Next, n is a symbol pattern that matches anything and binds n to expval. Lastly, guard matches if the boolean expression (< -9 n 9)= (note the reference to n) evaluates to non-nil. If all these sub-patterns match, and matches.
Example: Reformulation with pcase
Here is another example that shows how to reformulate a simple matching task from its traditional implementation (function grok/traditional) to one using pcase (function grok/pcase). The docstring for both these functions is: "If OBJ is a string of the form "key:NUMBER", return NUMBER (a string). Otherwise, return the list ("149" default)." First, the traditional implementation (Regular Expressions):
(defun grok/traditional (obj)
(if (and (stringp obj)
(string-match "^key:\\([[:digit:]]+\\)$" obj))
(match-string 1 obj)
(list "149" 'default)))
(grok/traditional "key:0") => "0"
(grok/traditional "key:149") => "149"
(grok/traditional 'monolith) => ("149" default)
The reformulation demonstrates symbol binding as well as or, and, pred, app and let.
(defun grok/pcase (obj)
(pcase obj
((or ; line 1
(and ; line 2
(pred stringp) ; line 3
(pred (string-match ; line 4
"^key:\\([[:digit:]]+\\)$")) ; line 5
(app (match-string 1) ; line 6
val)) ; line 7
(let val (list "149" 'default))) ; line 8
val))) ; line 9
(grok/pcase "key:0") => "0"
(grok/pcase "key:149") => "149"
(grok/pcase 'monolith) => ("149" default)
The bulk of grok/pcase is a single clause of a pcase form, the pattern on lines 1-8, the (single) body form on line 9. The pattern is or, which tries to match in turn its argument sub-patterns, first and (lines 2-7), then let (line 8), until one of them succeeds. As in the previous example (Example 1), and begins with a pred sub-pattern to ensure the following sub-patterns work with an object of the correct type (string, in this case). If (stringp EXPVAL) returns nil, pred fails, and thus and fails, too. The next pred (lines 4-5) evaluates (string-match RX EXPVAL) and matches if the result is non-nil, which means that expval has the desired form: key:NUMBER. Again, failing this, pred fails and and, too. Lastly (in this series of and sub-patterns), app evaluates (match-string 1 EXPVAL) (line 6) to get a temporary value tmp (i.e., the "NUMBER" substring) and tries to match tmp against pattern val (line 7). Since that is a symbol pattern, it matches unconditionally and additionally binds val to tmp. Now that app has matched, all and sub-patterns have matched, and so and matches. Likewise, once and has matched, or matches and does not proceed to try sub-pattern let (line 8). Let's consider the situation where obj is not a string, or it is a string but has the wrong form. In this case, one of the pred (lines 3-5) fails to match, thus and (line 2) fails to match, thus or (line 1) proceeds to try sub-pattern let (line 8). First, let evaluates (list "149" 'default) to get ("149" default), the exprval, and then tries to match exprval against pattern val. Since that is a symbol pattern, it matches unconditionally and additionally binds val to exprval. Now that let has matched, or matches. Note how both and and let sub-patterns finish in the same way: by trying (always successfully) to match against the symbol pattern val, in the process binding val. Thus, or always matches and control always passes to the body form (line 9). Because that is the last body form in a successfully matched pcase clause, it is the value of pcase and likewise the return value of grok/pcase (What Is a Function).
Caveats for symbol in Sequencing Patterns
The preceding examples all use sequencing patterns which include the symbol sub-pattern in some way. Here are some important details about that usage.
- When symbol occurs more than once in seqpat, the second and subsequent occurrences do not expand to re-binding, but instead expand to an equality test using
eq. The following example features apcaseform with two clauses and two seqpat, A and B. Both A and B first check that expval is a pair (usingpred), and then bind symbols to thecarandcdrof expval (using oneappeach). For A, because symbolstis mentioned twice, the second mention becomes an equality test usingeq. On the other hand, B uses two separate symbols,s1ands2, both of which become independent bindings. (defun grok (object) (pcase object ((and (pred consp) ; seqpat A (app car st) ; first mention: st (app cdr st)) ; second mention: st (list 'eq st)) ((and (pred consp) ; seqpat B (app car s1) ; first mention: s1 (app cdr s2)) ; first mention: s2 (list 'not-eq s1 s2)))) (let ((s "yow!")) (grok (cons s s))) => (eq "yow!") (grok (cons "yo!" "yo!")) => (not-eq "yo!" "yo!") (grok '(4 2)) => (not-eq 4 (2)) - Side-effecting code referencing symbol is undefined. Avoid. For example, here are two similar functions. Both use
and, symbol andguard: (defun square-double-digit-p/CLEAN (integer) (pcase (* integer integer) ((and n (guard (< 9 n 100))) (list 'yes n)) (sorry (list 'no sorry)))) (square-double-digit-p/CLEAN 9)> (yes 81) (square-double-digit-p/CLEAN 3) => (no 9) (defun square-double-digit-p/MAYBE (integer) (pcase (* integer integer) ((and n (guard (< 9 (incf n) 100))) (list 'yes n)) (sorry (list 'no sorry)))) (square-double-digit-p/MAYBE 9) => (yes 81) (square-double-digit-p/MAYBE 3) => (yes 9) ; WRONG! The difference is in /boolean-expression/ in =guard:CLEANreferencesnsimply and directly, whileMAYBEreferencesnwith a side-effect, in the expression(incf n). Whenintegeris 3, here's what happens: - The first
nbinds it to expval, i.e., the result of evaluating(* 3 3), or 9. - boolean-expression is evaluated: start: (< 9 (incf n) 100) becomes: (< 9 (setq n (1+ n)) 100) becomes: (< 9 (setq n (1+ 9)) 100) becomes: (< 9 (setq n 10) 100) ; side-effect here! becomes: (< 9 n 100) ;
nnow bound to 10 becomes: (< 9 10 100) becomes: t - Because the result of the evaluation is non-
nil,guardmatches,andmatches, and control passes to that clause's body forms. Aside from the mathematical incorrectness of asserting that 9 is a double-digit integer, there is another problem withMAYBE. The body form referencesnonce more, yet we do not see the updated value—10—at all. What happened to it? To sum up, it's best to avoid side-effecting references to symbol patterns entirely, not only in boolean-expression (inguard), but also in expr (inlet) and function (inpredandapp). - On match, the clause's body forms can reference the set of symbols the pattern let-binds. When seqpat is
and, this set is the union of all the symbols each of its sub-patterns let-binds. This makes sense because, forandto match, all the sub-patterns must match. When seqpat isor, things are different:ormatches at the first sub-pattern that matches; the rest of the sub-patterns are ignored. It makes no sense for each sub-pattern to let-bind a different set of symbols because the body forms have no way to distinguish which sub-pattern matched and choose among the different sets. For example, the following is invalid: (require 'cl-lib) (pcase (read-number "Enter an integer: ") ((or (and (pred cl-evenp) e-num) ; binde-numto expval o-num) ; bindo-numto expval (list e-num o-num))) Enter an integer: 42 error–> Symbol’s value as variable is void: o-num Enter an integer: 149 error–> Symbol’s value as variable is void: e-num Evaluating body form(list e-num o-num)signals error. To distinguish between sub-patterns, you can use another symbol, identical in name in all sub-patterns but differing in value. Reworking the above example: (require 'cl-lib) (pcase (read-number "Enter an integer: ") ((and num ; line 1 (or (and (pred cl-evenp) ; line 2 (let spin 'even)) ; line 3 (let spin 'odd))) ; line 4 (list spin num))) ; line 5 Enter an integer: 42> (even 42) Enter an integer: 149 => (odd 149) Line 1 "factors out" the /expval/ binding with =andand symbol (in this case,num). On line 2,orbegins in the same way as before, but instead of binding different symbols, useslettwice (lines 3-4) to bind the same symbolspinin both sub-patterns. The value ofspindistinguishes the sub-patterns. The body form references both symbols (line 5).
Extending pcase
The pcase macro supports several kinds of patterns (Pattern-Matching Conditional). You can add support for other kinds of patterns using the pcase-defmacro macro.
-
pcase-defmacro - Define a new kind of pattern for
pcase, to be invoked as(NAME ACTUAL-ARGS). Thepcasemacro expands this into a function call that evaluates body, whose job it is to rewrite the invoked pattern into some other pattern, in an environment where args are bound to actual-args. Additionally, arrange to display doc along with the docstring ofpcase. By convention, doc should useEXPVALto stand for the result of evaluating expression (first arg topcase).
Typically, body rewrites the invoked pattern to use more basic patterns. Although all patterns eventually reduce to core patterns, body need not use core patterns straight away. The following example defines two patterns, named less-than and integer-less-than.
(pcase-defmacro less-than (n)
"Matches if EXPVAL is a number less than N."
`(pred (> ,n)))
(pcase-defmacro integer-less-than (n)
"Matches if EXPVAL is an integer less than N."
`(and (pred integerp)
(less-than ,n)))
Note that the docstrings mention args (in this case, only one: n) in the usual way, and also mention EXPVAL by convention. The first rewrite (i.e., body for less-than) uses one core pattern: pred. The second uses two core patterns: and and pred, as well as the newly-defined pattern less-than. Both use a single backquote construct (Backquote).
Backquote-Style Patterns
This subsection describes backquote-style patterns, a set of builtin patterns that eases structural matching. For background, Pattern-Matching Conditional. Backquote-style patterns are a powerful set of pcase pattern extensions (created using pcase-defmacro) that make it easy to match expval against specifications of its structure. For example, to match expval that must be a list of two elements whose first element is a specific string and the second element is any value, you can write a core pattern:
(and (pred listp)
ls
(guard (= 2 (length ls)))
(guard (string= "first" (car ls)))
(let second-elem (cadr ls)))
or you can write the equivalent backquote-style pattern:
`("first" ,second-elem)
The backquote-style pattern is more concise, resembles the structure of expval, and avoids binding ls. A backquote-style pattern has the form `QPAT where qpat can have the following forms:
-
(QPAT1 . QPAT2) - Matches if expval is a cons cell whose
carmatches qpat1 and whosecdrmatches qpat2. This readily generalizes to lists as in(QPAT1 QPAT2 ...). -
[QPAT1 QPAT2 ... QPATM] - Matches if expval is a vector of length m whose
0..=(M-1)=th elements match qpat1, qpat2 … qpatm, respectively. -
SYMBOL,KEYWORD,NUMBER,STRING - Matches if the corresponding element of expval is
equalto the specified literal object. -
,PATTERN - Matches if the corresponding element of expval matches pattern. Note that pattern is any kind that
pcasesupports. (In the example above,second-elemis a symbol core pattern; it therefore matches anything, and let-bindssecond-elem.)
The corresponding element is the portion of expval that is in the same structural position as the structural position of qpat in the backquote-style pattern. (In the example above, the corresponding element of second-elem is the second element of expval.) Here is an example of using pcase to implement a simple interpreter for a little expression language (note that this requires lexical binding for the lambda expression in the fn clause to properly capture body and arg (Lexical Binding):
(defun evaluate (form env)
(pcase form
(`(add ,x ,y) (+ (evaluate x env)
(evaluate y env)))
(`(call ,fun ,arg) (funcall (evaluate fun env)
(evaluate arg env)))
(`(fn ,arg ,body) (lambda (val)
(evaluate body (cons (cons arg val)
env))))
((pred numberp) form)
((pred symbolp) (cdr (assq form env)))
(_ (error "Syntax error: %S" form))))
The first three clauses use backquote-style patterns. `(add is a pattern that checks that form is a three-element list starting with the literal symbol add, then extracts the second and third elements and binds them to symbols x and y, respectively. This is known as destructuring, see Destructuring with pcase Patterns. The clause body evaluates x and y and adds the results. Similarly, the call clause implements a function call, and the fn clause implements an anonymous function definition. The remaining clauses use core patterns. (pred numberp) matches if form is a number. On match, the body evaluates it. (pred symbolp) matches if form is a symbol. On match, the body looks up the symbol in env and returns its association. Finally, _ is the catch-all pattern that matches anything, so it's suitable for reporting syntax errors. Here are some sample programs in this small language, including their evaluation results:
(evaluate '(add 1 2) nil) => 3 (evaluate '(add x y) '((x . 1) (y . 2))) => 3 (evaluate '(call (fn x (add 1 x)) 2) nil) => 3 (evaluate '(sub 1 2) nil) => error
Destructuring with pcase Patterns
Pcase patterns not only express a condition on the form of the objects they can match, but they can also extract sub-fields of those objects. For example we can extract 2 elements from a list that is the value of the variable my-list with the following code:
(pcase my-list
(`(add ,x ,y) (message "Contains %S and %S" x y)))
This will not only extract x and y but will additionally test that my-list is a list containing exactly 3 elements and whose first element is the symbol add. If any of those tests fail, pcase will immediately return nil without calling message. Extraction of multiple values stored in an object is known as destructuring. Using pcase patterns allows to perform destructuring binding, which is similar to a local binding (Local Variables), but gives values to multiple elements of a variable by extracting those values from an object of compatible structure. The macros described in this section use pcase patterns to perform destructuring binding. The condition of the object to be of compatible structure means that the object must match the pattern, because only then the object's subfields can be extracted. For example:
(pcase-let ((`(add ,x ,y) my-list))
(message "Contains %S and %S" x y))
does the same as the previous example, except that it directly tries to extract x and y from my-list without first verifying if my-list is a list which has the right number of elements and has add as its first element. The precise behavior when the object does not actually match the pattern is undefined, although the body will not be silently skipped: either an error is signaled or the body is run with some of the variables potentially bound to arbitrary values like nil. The pcase patterns that are useful for destructuring bindings are generally those described in Backquote Patterns, since they express a specification of the structure of objects that will match. For an alternative facility for destructuring binding, see seq-let.
-
pcase-let - Perform destructuring binding of variables according to bindings, and then evaluate body. bindings is a list of bindings of the form
(PATTERN EXP), where exp is an expression to evaluate and pattern is apcasepattern. All exp/s are evaluated first, after which they are matched against their respective /pattern, introducing new variable bindings that can then be used inside body. The variable bindings are produced by destructuring binding of elements of pattern to the values of the corresponding elements of the evaluated exp. Here's a trivial example:
(pcase-let ((`(,major ,minor)
(split-string "image/png" "/")))
minor)
=> "png"
-
pcase-let* - Perform destructuring binding of variables according to bindings, and then evaluate body. bindings is a list of bindings of the form
(PATTERN EXP), where exp is an expression to evaluate and pattern is apcasepattern. The variable bindings are produced by destructuring binding of elements of pattern to the values of the corresponding elements of the evaluated exp. Unlikepcase-let, but similarly tolet*, each exp is matched against its corresponding pattern before processing the next element of bindings, so the variable bindings introduced in each one of the bindings are available in the exp/s of the /bindings that follow it, additionally to being available in body. -
pcase-dolist - Execute body once for each element of list, on each iteration performing a destructuring binding of variables in pattern to the values of the corresponding subfields of the element of list. The bindings are performed as if by
pcase-let. When pattern is a simple variable, this ends up being equivalent todolist(Iteration). -
pcase-setq - Assign values to variables in a
setqform, destructuring each value according to its respective pattern. -
pcase-lambda - This is like
lambda, but allows each argument to be a pattern. For instance, here's a simple function that takes a cons cell as the argument:
(setq fun
(pcase-lambda (`(,key . ,val))
(vector key (* val 10))))
(funcall fun '(foo . 2))
=> [foo 20]
Iteration
Iteration means executing part of a program repetitively. For example, you might want to repeat some computation once for each element of a list, or once for each integer from 0 to n. You can do this in Emacs Lisp with the special form while:
-
while whilefirst evaluates condition. If the result is non-nil, it evaluates forms in textual order. Then it reevaluates condition, and if the result is non-nil, it evaluates forms again. This process repeats until condition evaluates tonil. There is no limit on the number of iterations that may occur. The loop will continue until either condition evaluates tonilor until an error orthrowjumps out of it (Nonlocal Exits). The value of awhileform is alwaysnil.
(setq num 0)
=> 0
(while (< num 4)
(princ (format "Iteration %d." num))
(setq num (1+ num)))
-| Iteration 0.
-| Iteration 1.
-| Iteration 2.
-| Iteration 3.
=> nil
To write a repeat-until loop, which will execute something on each iteration and then do the end-test, put the body followed by the end-test in a progn as the first argument of while, as shown here:
(while (progn
(forward-line 1)
(not (looking-at "^$"))))
This moves forward one line and continues moving by lines until it reaches an empty line. It is peculiar in that the while has no body, just the end test (which also does the real work of moving point). The dolist and dotimes macros provide convenient ways to write two common kinds of loops.
-
dolist - This construct executes body once for each element of list, binding the variable var locally to hold the current element. Then it returns the value of evaluating result, or
nilif result is omitted. For example, here is how you could usedolistto define thereversefunction:
(defun reverse (list)
(let (value)
(dolist (elt list value)
(setq value (cons elt value)))))
-
dotimes - This construct executes body once for each integer from 0 (inclusive) to count (exclusive), binding the variable var to the integer for the current iteration. Then it returns the value of evaluating result, or
nilif result is omitted. Use of result is deprecated. Here is an example of usingdotimesto do something 100 times:
(dotimes (i 100) (insert "I will not obey absurd orders\n"))
Generators
A generator is a function that produces a potentially-infinite stream of values. Each time the function produces a value, it suspends itself and waits for a caller to request the next value.
-
iter-defun iter-defundefines a generator function. A generator function has the same signature as a normal function, but works differently. Instead of executing body when called, a generator function returns an iterator object. That iterator runs body to generate values, emitting a value and pausing whereiter-yieldoriter-yield-fromappears. When body returns normally,iter-nextsignalsiter-end-of-sequencewith body's result as its condition data. Any kind of Lisp code is valid inside body, butiter-yieldanditer-yield-fromcannot appear insideunwind-protectforms.-
iter-lambda iter-lambdaproduces an unnamed generator function that works just like a generator function produced withiter-defun.-
iter-yield - When it appears inside a generator function,
iter-yieldindicates that the current iterator should pause and return value fromiter-next.iter-yieldevaluates to thevalueparameter of next call toiter-next. -
iter-yield-from iter-yield-fromyields all the values that iterator produces and evaluates to the value that iterator's generator function returns normally. While it has control, iterator receives values sent to the iterator usingiter-next.
To use a generator function, first call it normally, producing a iterator object. An iterator is a specific instance of a generator. Then use iter-next to retrieve values from this iterator. When there are no more values to pull from an iterator, iter-next raises an iter-end-of-sequence condition with the iterator's final value. It's important to note that generator function bodies only execute inside calls to iter-next. A call to a function defined with iter-defun produces an iterator; you must drive this iterator with iter-next for anything interesting to happen. Each call to a generator function produces a different iterator, each with its own state.
-
iter-next - Retrieve the next value from iterator. If there are no more values to be generated (because iterator's generator function returned),
iter-nextsignals theiter-end-of-sequencecondition; the data value associated with this condition is the value with which iterator's generator function returned. value is sent into the iterator and becomes the value to whichiter-yieldevaluates. value is ignored for the firstiter-nextcall to a given iterator, since at the start of iterator's generator function, the generator function is not evaluating anyiter-yieldform. -
iter-close - If iterator is suspended inside an
unwind-protect'sbodyformand becomes unreachable, Emacs will eventually run unwind handlers after a garbage collection pass. (Note thatiter-yieldis illegal inside anunwind-protect'sunwindforms.) To ensure that these handlers are run before then, useiter-close.
Some convenience functions are provided to make working with iterators easier:
-
iter-do - Run body with var bound to each value that iterator produces.
The Common Lisp loop facility also contains features for working with iterators. Loop Facility. The following piece of code demonstrates some important principles of working with iterators.
(require 'generator)
(iter-defun my-iter (x)
(iter-yield (1+ (iter-yield (1+ x))))
;; Return normally
-1)
(let* ((iter (my-iter 5))
(iter2 (my-iter 0)))
;; Prints 6
(print (iter-next iter))
;; Prints 9
(print (iter-next iter 8))
;; Prints 1; iter and iter2 have distinct states
(print (iter-next iter2 nil))
;; We expect the iter sequence to end now
(condition-case x
(iter-next iter)
(iter-end-of-sequence
;; Prints -1, which my-iter returned normally
(print (cdr x)))))
Nonlocal Exits
A nonlocal exit is a transfer of control from one point in a program to another remote point. Nonlocal exits can occur in Emacs Lisp as a result of errors; you can also use them under explicit control. Nonlocal exits unbind all variable bindings made by the constructs being exited.
Explicit Nonlocal Exits: catch and throw
Most control constructs affect only the flow of control within the construct itself. The function throw is the exception to this rule of normal program execution: it performs a nonlocal exit on request. (There are other exceptions, but they are for error handling only.) throw is used inside a catch, and jumps back to that catch. For example:
(defun foo-outer ()
(catch 'foo
(foo-inner)))
(defun foo-inner ()
...
(if x
(throw 'foo t))
...)
The throw form, if executed, transfers control straight back to the corresponding catch, which returns immediately. The code following the throw is not executed. The second argument of throw is used as the return value of the catch. The function throw finds the matching catch based on the first argument: it searches for a catch whose first argument is eq to the one specified in the throw. If there is more than one applicable catch, the innermost one takes precedence. Thus, in the above example, the throw specifies foo, and the catch in foo-outer specifies the same symbol, so that catch is the applicable one (assuming there is no other matching catch in between). Executing throw exits all Lisp constructs up to the matching catch, including function calls. When binding constructs such as let or function calls are exited in this way, the bindings are unbound, just as they are when these constructs exit normally (Local Variables). Likewise, throw restores the buffer and position saved by save-excursion (Excursions), and the narrowing status saved by save-restriction. It also runs any cleanups established with the unwind-protect special form when it exits that form (Cleanups). The throw need not appear lexically within the catch that it jumps to. It can equally well be called from another function called within the catch. As long as the throw takes place chronologically after entry to the catch, and chronologically before exit from it, it has access to that catch. This is why throw can be used in commands such as exit-recursive-edit that throw back to the editor command loop (Recursive Editing).
Common Lisp note: Most other versions of Lisp, including Common Lisp, have several ways of transferring control nonsequentially: return, return-from, and go, for example. Emacs Lisp has only throw. The cl-lib library provides versions of some of these. Blocks and Exits.
-
catch catchestablishes a return point for thethrowfunction. The return point is distinguished from other such return points by tag, which may be any Lisp object exceptnil. The argument tag is evaluated normally before the return point is established. With the return point in effect,catchevaluates the forms of the body in textual order. If the forms execute normally (without error or nonlocal exit) the value of the last body form is returned from thecatch. If athrowis executed during the execution of body, specifying the same value tag, thecatchform exits immediately; the value it returns is whatever was specified as the second argument ofthrow.-
throw - The purpose of
throwis to return from a return point previously established withcatch. The argument tag is used to choose among the various existing return points; it must beeqto the value specified in thecatch. If multiple return points match tag, the innermost one is used. The argument value is used as the value to return from thatcatch. If no return point is in effect with tag tag, then ano-catcherror is signaled with data(TAG VALUE).
Examples of catch and throw
One way to use catch and throw is to exit from a doubly nested loop. (In most languages, this would be done with a goto.) Here we compute (foo I J) for i and j varying from 0 to 9:
(defun search-foo ()
(catch 'loop
(let ((i 0))
(while (< i 10)
(let ((j 0))
(while (< j 10)
(if (foo i j)
(throw 'loop (list i j)))
(setq j (1+ j))))
(setq i (1+ i))))))
If foo ever returns non-nil, we stop immediately and return a list of i and j. If foo always returns nil, the catch returns normally, and the value is nil, since that is the result of the while. Here are two tricky examples, slightly different, showing two return points at once. First, two return points with the same tag, hack:
(defun catch2 (tag)
(catch tag
(throw 'hack 'yes)))
=> catch2
(catch 'hack
(print (catch2 'hack))
'no)
-| yes
=> no
Since both return points have tags that match the throw, it goes to the inner one, the one established in catch2. Therefore, catch2 returns normally with value yes, and this value is printed. Finally the second body form in the outer catch, which is 'no, is evaluated and returned from the outer catch. Now let's change the argument given to catch2:
(catch 'hack (print (catch2 'quux)) 'no) => yes
We still have two return points, but this time only the outer one has the tag hack; the inner one has the tag quux instead. Therefore, throw makes the outer catch return the value yes. The function print is never called, and the body-form 'no is never evaluated.
Errors
When Emacs Lisp attempts to evaluate a form that, for some reason, cannot be evaluated, it signals an error. When an error is signaled, Emacs's default reaction is to print an error message and terminate execution of the current command. This is the right thing to do in most cases, such as if you type C-f at the end of the buffer. In complicated programs, simple termination may not be what you want. For example, the program may have made temporary changes in data structures, or created temporary buffers that should be deleted before the program is finished. In such cases, you would use unwind-protect to establish cleanup expressions to be evaluated in case of error. (Cleanups.) Occasionally, you may wish the program to continue execution despite an error in a subroutine. In these cases, you would use condition-case to establish error handlers to recover control in case of error. For reporting problems without terminating the execution of the current command, consider issuing a warning instead. Warnings. Resist the temptation to use error handling to transfer control from one part of the program to another; use catch and throw instead. Catch and Throw.
How to Signal an Error
Signaling an error means beginning error processing. Error processing normally aborts all or part of the running program and returns to a point that is set up to handle the error (Processing of Errors). Here we describe how to signal an error. Most errors are signaled automatically within Lisp primitives which you call for other purposes, such as if you try to take the CAR of an integer or move forward a character at the end of the buffer. You can also signal errors explicitly with the functions error and signal. Quitting, which happens when the user types C-g, is not considered an error, but it is handled almost like an error. Quitting. Every error specifies an error message, one way or another. The message should state what is wrong ("File does not exist"), not how things ought to be ("File must exist"). The convention in Emacs Lisp is that error messages should start with a capital letter, but should not end with any sort of punctuation.
-
error - This function signals an error with an error message constructed by applying
format-message(Formatting Strings) to format-string and args. These examples show typical uses oferror:
(error "That is an error -- try something else")
error--> That is an error -- try something else
(error "Invalid name `%s'" "A%%B")
error--> Invalid name ‘A%%B’
error works by calling signal with two arguments: the error symbol error, and a list containing the string returned by format-message. Typically grave accent and apostrophe in the format translate to matching curved quotes, e.g., "Missing `%s'" might result in "Missing ‘foo’". Text Quoting Style, for how to influence or inhibit this translation. Warning: If you want to use your own string as an error message verbatim, don't just write (error STRING). If string string contains %, `, or ' it may be reformatted, with undesirable results. Instead, use (error "%s" STRING). When noninteractive is non-nil (Batch Mode), this function kills Emacs if the signaled error has no handler.
-
signal - This function signals an error named by error-symbol. The argument data is a list of additional Lisp objects relevant to the circumstances of the error. The argument error-symbol must be an error symbol—a symbol defined with
define-error. This is how Emacs Lisp classifies different sorts of errors. Error Symbols, for a description of error symbols, error conditions and condition names. If the error is not handled, the two arguments are used in printing the error message. Normally, this error message is provided by theerror-messageproperty of error-symbol. If data is non-nil, this is followed by a colon and a comma separated list of the unevaluated elements of data. Forerror, the error message is the CAR of data (that must be a string). Subcategories offile-errorare handled specially. The number and significance of the objects in data depends on error-symbol. For example, with awrong-type-argumenterror, there should be two objects in the list: a predicate that describes the type that was expected, and the object that failed to fit that type. Both error-symbol and data are available to any error handlers that handle the error:condition-casebinds a local variable to a list of the form(ERROR-SYMBOL . DATA)(Handling Errors). The functionsignalnever returns. If the error error-symbol has no handler, andnoninteractiveis non-nil(Batch Mode), this function eventually kills Emacs.
(signal 'wrong-number-of-arguments '(x y))
error--> Wrong number of arguments: x, y
(signal 'no-such-error '("My unknown error condition"))
error--> peculiar error: "My unknown error condition"
-
user-error - This function behaves exactly like
error, except that it uses the error symboluser-errorrather thanerror. As the name suggests, this is intended to report errors on the part of the user, rather than errors in the code itself. For example, if you try to use the commandInfo-history-back(l) to move back beyond the start of your Info browsing history, Emacs signals auser-error. Such errors do not cause entry to the debugger, even whendebug-on-erroris non-nil. Error Debugging.
Common Lisp note: Emacs Lisp has nothing like the Common Lisp concept of continuable errors.
How Emacs Processes Errors
When an error is signaled, signal searches for an active handler for the error. A handler is a sequence of Lisp expressions designated to be executed if an error happens in part of the Lisp program. If the error has an applicable handler, the handler is executed, and control resumes following the handler. The handler executes in the environment of the condition-case that established it; all functions called within that condition-case have already been exited, and the handler cannot return to them. If there is no applicable handler for the error, it terminates the current command and returns control to the editor command loop. (The command loop has an implicit handler for all kinds of errors.) The command loop's handler uses the error symbol and associated data to print an error message. You can use the variable command-error-function to control how this is done:
-
command-error-function - This variable, if non-
nil, specifies a function to use to handle errors that return control to the Emacs command loop. The function should take three arguments: data, a list of the same form thatcondition-casewould bind to its variable; context, a string describing the situation in which the error occurred, or (more often)nil; and caller, the Lisp function which called the primitive that signaled the error.
An error that has no explicit handler may call the Lisp debugger (Invoking the Debugger). The debugger is enabled if the variable debug-on-error (Error Debugging) is non-nil. Unlike error handlers, the debugger runs in the environment of the error, so that you can examine values of variables precisely as they were at the time of the error. In batch mode (Batch Mode), the Emacs process then normally exits with a non-zero exit status.
Writing Code to Handle Errors
The usual effect of signaling an error is to terminate the command that is running and return immediately to the Emacs editor command loop. You can arrange to trap errors occurring in a part of your program by establishing an error handler, with the special form condition-case. A simple example looks like this:
(condition-case nil
(delete-file filename)
(error nil))
This deletes the file named filename, catching any error and returning nil if an error occurs. (You can use the macro ignore-errors for a simple case like this; see below.) The condition-case construct is often used to trap errors that are predictable, such as failure to open a file in a call to insert-file-contents. It is also used to trap errors that are totally unpredictable, such as when the program evaluates an expression read from the user. The second argument of condition-case is called the protected form. (In the example above, the protected form is a call to delete-file.) The error handlers go into effect when this form begins execution and are deactivated when this form returns. They remain in effect for all the intervening time. In particular, they are in effect during the execution of functions called by this form, in their subroutines, and so on. This is a good thing, since, strictly speaking, errors can be signaled only by Lisp primitives (including signal and error) called by the protected form, not by the protected form itself. The arguments after the protected form are handlers. Each handler lists one or more condition names (which are symbols) to specify which errors it will handle. The error symbol specified when an error is signaled also defines a list of condition names. A handler applies to an error if they have any condition names in common. In the example above, there is one handler, and it specifies one condition name, error, which covers all errors. The search for an applicable handler checks all the established handlers starting with the most recently established one. Thus, if two nested condition-case forms offer to handle the same error, the inner of the two gets to handle it. If an error is handled by some condition-case form, this ordinarily prevents the debugger from being run, even if debug-on-error says this error should invoke the debugger. If you want to be able to debug errors that are caught by a condition-case, set the variable debug-on-signal to a non-nil value. You can also specify that a particular handler should let the debugger run first, by writing debug among the conditions, like this:
(condition-case nil
(delete-file filename)
((debug error) nil))
The effect of debug here is only to prevent condition-case from suppressing the call to the debugger. Any given error will invoke the debugger only if debug-on-error and the other usual filtering mechanisms say it should. Error Debugging.
-
condition-case-unless-debug - The macro
condition-case-unless-debugprovides another way to handle debugging of such forms. It behaves exactly likecondition-case, unless the variabledebug-on-erroris non-nil, in which case it does not handle any errors at all.
Once Emacs decides that a certain handler handles the error, it returns control to that handler. To do so, Emacs unbinds all variable bindings made by binding constructs that are being exited, and executes the cleanups of all unwind-protect forms that are being exited. Once control arrives at the handler, the body of the handler executes normally. After execution of the handler body, execution returns from the condition-case form. Because the protected form is exited completely before execution of the handler, the handler cannot resume execution at the point of the error, nor can it examine variable bindings that were made within the protected form. All it can do is clean up and proceed. Error signaling and handling have some resemblance to throw and catch (Catch and Throw), but they are entirely separate facilities. An error cannot be caught by a catch, and a throw cannot be handled by an error handler (though using throw when there is no suitable catch signals an error that can be handled).
-
condition-case - This special form establishes the error handlers handlers around the execution of protected-form. If protected-form executes without error, the value it returns becomes the value of the
condition-caseform (in the absence of a success handler; see below). In this case, thecondition-casehas no effect. Thecondition-caseform makes a difference when an error occurs during protected-form. Each of the handlers is a list of the form(CONDITIONS BODY...). Here conditions is an error condition name to be handled, or a list of condition names (which can includedebugto allow the debugger to run before the handler). A condition name oftmatches any condition. body is one or more Lisp expressions to be executed when this handler handles an error. Here are examples of handlers:
(error nil) (arith-error (message "Division by zero")) ((arith-error file-error) (message "Either division by zero or failure to open a file"))
Each error that occurs has an error symbol that describes what kind of error it is, and which describes also a list of condition names (Error Symbols). Emacs searches all the active condition-case forms for a handler that specifies one or more of these condition names; the innermost matching condition-case handles the error. Within this condition-case, the first applicable handler handles the error. After executing the body of the handler, the condition-case returns normally, using the value of the last form in the handler body as the overall value. The argument var is a variable. condition-case does not bind this variable when executing the protected-form, only when it handles an error. At that time, it binds var locally to an error description, which is a list giving the particulars of the error. The error description has the form (ERROR-SYMBOL . DATA). The handler can refer to this list to decide what to do. For example, if the error is for failure opening a file, the file name is the second element of data—the third element of the error description. If var is nil, that means no variable is bound. Then the error symbol and associated data are not available to the handler. As a special case, one of the handlers can be a list of the form (:success BODY...), where body is executed with var (if non-nil) bound to the return value of protected-form when that expression terminates without error. Sometimes it is necessary to re-throw a signal caught by condition-case, for some outer-level handler to catch. Here's how to do that:
(signal (car err) (cdr err))
where err is the error description variable, the first argument to condition-case whose error condition you want to re-throw. Definition of signal.
-
error-message-string - This function returns the error message string for a given error descriptor. It is useful if you want to handle an error by printing the usual error message for that error. Definition of signal.
Here is an example of using condition-case to handle the error that results from dividing by zero. The handler displays the error message (but without a beep), then returns a very large number.
(defun safe-divide (dividend divisor)
(condition-case err
;; Protected form.
(/ dividend divisor)
;; The handler.
(arith-error ; Condition.
;; Display the usual message for this error.
(message "%s" (error-message-string err))
1000000)))
=> safe-divide
(safe-divide 5 0)
-| Arithmetic error: (arith-error)
=> 1000000
The handler specifies condition name arith-error so that it will handle only division-by-zero errors. Other kinds of errors will not be handled (by this condition-case). Thus:
(safe-divide nil 3)
error--> Wrong type argument: number-or-marker-p, nil
Here is a condition-case that catches all kinds of errors, including those from error:
(setq baz 34)
=> 34
(condition-case err
(if (eq baz 35)
t
;; This is a call to the function error.
(error "Rats! The variable %s was %s, not 35" 'baz baz))
;; This is the handler; it is not a form.
(error (princ (format "The error was: %s" err))
2))
-| The error was: (error "Rats! The variable baz was 34, not 35")
=> 2
-
ignore-errors - This construct executes body, ignoring any errors that occur during its execution. If the execution is without error,
ignore-errorsreturns the value of the last form in body; otherwise, it returnsnil. Here's the example at the beginning of this subsection rewritten usingignore-errors:
(ignore-errors (delete-file filename))
-
ignore-error - This macro is like
ignore-errors, but will only ignore the specific error condition specified.
(ignore-error end-of-file
(read ""))
condition can also be a list of error conditions.
-
with-demoted-errors - This macro is like a milder version of
ignore-errors. Rather than suppressing errors altogether, it converts them into messages. It uses the string format to format the message. format should contain a single%-sequence; e.g.,"Error: %S". Usewith-demoted-errorsaround code that is not expected to signal errors, but should be robust if one does occur. Note that this macro usescondition-case-unless-debugrather thancondition-case.
Error Symbols and Condition Names
When you signal an error, you specify an error symbol to specify the kind of error you have in mind. Each error has one and only one error symbol to categorize it. This is the finest classification of errors defined by the Emacs Lisp language. These narrow classifications are grouped into a hierarchy of wider classes called error conditions, identified by condition names. The narrowest such classes belong to the error symbols themselves: each error symbol is also a condition name. There are also condition names for more extensive classes, up to the condition name error which takes in all kinds of errors (but not quit). Thus, each error has one or more condition names: error, the error symbol if that is distinct from error, and perhaps some intermediate classifications.
-
define-error - In order for a symbol to be an error symbol, it must be defined with
define-errorwhich takes a parent condition (defaults toerror). This parent defines the conditions that this kind of error belongs to. The transitive set of parents always includes the error symbol itself, and the symbolerror. Because quitting is not considered an error, the set of parents ofquitis just(quit).
In addition to its parents, the error symbol has a message which is a string to be printed when that error is signaled but not handled. If that message is not valid, the error message peculiar error is used. Definition of signal. Internally, the set of parents is stored in the error-conditions property of the error symbol and the message is stored in the error-message property of the error symbol. Here is how we define a new error symbol, new-error:
(define-error 'new-error "A new error" 'my-own-errors)
This error has several condition names: new-error, the narrowest classification; my-own-errors, which we imagine is a wider classification; and all the conditions of my-own-errors which should include error, which is the widest of all. The error string should start with a capital letter but it should not end with a period. This is for consistency with the rest of Emacs. Naturally, Emacs will never signal new-error on its own; only an explicit call to signal (Definition of signal) in your code can do this:
(signal 'new-error '(x y))
error--> A new error: x, y
This error can be handled through any of its condition names. This example handles new-error and any other errors in the class my-own-errors:
(condition-case foo
(bar nil t)
(my-own-errors nil))
The significant way that errors are classified is by their condition names—the names used to match errors with handlers. An error symbol serves only as a convenient way to specify the intended error message and list of condition names. It would be cumbersome to give signal a list of condition names rather than one error symbol. By contrast, using only error symbols without condition names would seriously decrease the power of condition-case. Condition names make it possible to categorize errors at various levels of generality when you write an error handler. Using error symbols alone would eliminate all but the narrowest level of classification. Standard Errors, for a list of the main error symbols and their conditions.
Cleaning Up from Nonlocal Exits
The unwind-protect construct is essential whenever you temporarily put a data structure in an inconsistent state; it permits you to make the data consistent again in the event of an error or throw. (Another more specific cleanup construct that is used only for changes in buffer contents is the atomic change group; Atomic Changes.)
-
unwind-protect unwind-protectexecutes body-form with a guarantee that the cleanup-forms will be evaluated if control leaves body-form, no matter how that happens. body-form may complete normally, or execute athrowout of theunwind-protect, or cause an error; in all cases, the cleanup-forms will be evaluated. If body-form finishes normally,unwind-protectreturns the value of body-form, after it evaluates the cleanup-forms. If body-form does not finish,unwind-protectdoes not return any value in the normal sense. Only body-form is protected by theunwind-protect. If any of the cleanup-forms themselves exits nonlocally (via athrowor an error),unwind-protectis not guaranteed to evaluate the rest of them. If the failure of one of the cleanup-forms has the potential to cause trouble, then protect it with anotherunwind-protectaround that form.
For example, here we make an invisible buffer for temporary use, and make sure to kill it before finishing:
(let ((buffer (get-buffer-create " *temp*")))
(with-current-buffer buffer
(unwind-protect
BODY-FORM
(kill-buffer buffer))))
You might think that we could just as well write (kill-buffer (current-buffer)) and dispense with the variable buffer. However, the way shown above is safer, if body-form happens to get an error after switching to a different buffer! (Alternatively, you could write a save-current-buffer around body-form, to ensure that the temporary buffer becomes current again in time to kill it.) Emacs includes a standard macro called with-temp-buffer which expands into more or less the code shown above (Current Buffer). Several of the macros defined in this manual use unwind-protect in this way. Here is an actual example derived from an FTP package. It creates a process (Processes) to try to establish a connection to a remote machine. As the function ftp-login is highly susceptible to numerous problems that the writer of the function cannot anticipate, it is protected with a form that guarantees deletion of the process in the event of failure. Otherwise, Emacs might fill up with useless subprocesses.
(let ((win nil))
(unwind-protect
(progn
(setq process (ftp-setup-buffer host file))
(if (setq win (ftp-login process host user password))
(message "Logged in")
(error "Ftp login failed")))
(or win (and process (delete-process process)))))
This example has a small bug: if the user types C-g to quit, and the quit happens immediately after the function ftp-setup-buffer returns but before the variable process is set, the process will not be killed. There is no easy way to fix this bug, but at least it is very unlikely.