[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/lisp.h
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/src/lisp.h |
Date: |
Mon, 12 Aug 2002 13:28:36 -0400 |
Index: emacs/src/lisp.h
diff -c emacs/src/lisp.h:1.436 emacs/src/lisp.h:1.437
*** emacs/src/lisp.h:1.436 Tue Jul 23 22:07:11 2002
--- emacs/src/lisp.h Mon Aug 12 13:28:36 2002
***************
*** 1712,1717 ****
--- 1712,1723 ----
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,
- [Emacs-diffs] Changes to emacs/src/lisp.h,
Richard M. Stallman <=