aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-08-12 17:28:36 +0000
committerRichard M. Stallman2002-08-12 17:28:36 +0000
commit992dd91a9170f5ee700817427ce75e049c0556e8 (patch)
treee1149553794fbe2298777a187497760893bf907b
parent557713d896b8cc20686bee10579a4afaac8b274d (diff)
downloademacs-992dd91a9170f5ee700817427ce75e049c0556e8.tar.gz
emacs-992dd91a9170f5ee700817427ce75e049c0556e8.zip
Comment change.
-rw-r--r--src/lisp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 02ccb09a8eb..2fa51d4d12e 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1712,6 +1712,12 @@ extern EMACS_INT max_specpdl_size;
1712struct handler 1712struct handler
1713 { 1713 {
1714 /* The handler clauses and variable from the condition-case form. */ 1714 /* The handler clauses and variable from the condition-case form. */
1715 /* For a handler set up in Lisp code, this is always a list.
1716 For an internal handler set up by internal_condition_case*,
1717 this can instead be the symbol t or `error'.
1718 t: handle all conditions.
1719 error: handle all conditions, and errors can run the debugger
1720 or display a backtrace. */
1715 Lisp_Object handler; 1721 Lisp_Object handler;
1716 Lisp_Object var; 1722 Lisp_Object var;
1717 /* Fsignal stores here the condition-case clause that applies, 1723 /* Fsignal stores here the condition-case clause that applies,