changeset 46866:34ee31960675

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Mon, 12 Aug 2002 17:28:36 +0000
parents 971ae7795f13
children ee3c03ac519e
files src/lisp.h
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/lisp.h	Mon Aug 12 17:27:57 2002 +0000
+++ b/src/lisp.h	Mon Aug 12 17:28:36 2002 +0000
@@ -1712,6 +1712,12 @@
 struct handler
   {
     /* The handler clauses and variable from the condition-case form.  */
+    /* For a handler set up in Lisp code, this is always a list.
+       For an internal handler set up by internal_condition_case*,
+       this can instead be the symbol t or `error'.
+       t: handle all conditions.
+       error: handle all conditions, and errors can run the debugger
+              or display a backtrace.  */
     Lisp_Object handler;
     Lisp_Object var;
     /* Fsignal stores here the condition-case clause that applies,