# HG changeset patch # User Richard M. Stallman # Date 1153170440 0 # Node ID df5c12c54d2475b391b5540c5650a73441be4168 # Parent 4bc25e59ebd1809d4395f9332c214e3e84faa9a7 (Processing of Errors): Add command-error-function. diff -r 4bc25e59ebd1 -r df5c12c54d24 lispref/control.texi --- a/lispref/control.texi Mon Jul 17 21:00:58 2006 +0000 +++ b/lispref/control.texi Mon Jul 17 21:07:20 2006 +0000 @@ -849,11 +849,22 @@ established it; all functions called within that @code{condition-case} have already been exited, and the handler cannot return to them. -If there is no applicable handler for the error, the current command is -terminated and control returns to the editor command loop, because the -command loop has an implicit handler for all kinds of errors. The +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. +print an error message. You can use the variable +@code{command-error-function} to control how this is done: + +@defvar command-error-function +This variable, if non-@code{nil}, specifies a function to use to +handle errors that return control to the Emacs command loop. The +function should take three arguments: @var{data}, a list of the same +form that @code{condition-case} would bind to its variable; +@var{context}, a string describing the situation in which the error +occurred, or (more often) @code{nil}; and @code{caller}, the Lisp +function which called the primitive that signaled the error. +@end defvar @cindex @code{debug-on-error} use An error that has no explicit handler may call the Lisp debugger. The