Mercurial > hg > xemacs-beta
comparison src/eval.c @ 458:c33ae14dd6d0 r21-2-44
Import from CVS: tag r21-2-44
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:42:25 +0200 |
parents | 3d3049ae1304 |
children | 666d73d6ac56 |
comparison
equal
deleted
inserted
replaced
457:4b9290a33024 | 458:c33ae14dd6d0 |
---|---|
161 | 161 |
162 /* specpdl_ptr - specpdl */ | 162 /* specpdl_ptr - specpdl */ |
163 int specpdl_depth_counter; | 163 int specpdl_depth_counter; |
164 | 164 |
165 /* Maximum size allowed for specpdl allocation */ | 165 /* Maximum size allowed for specpdl allocation */ |
166 int max_specpdl_size; | 166 Fixnum max_specpdl_size; |
167 | 167 |
168 /* Depth in Lisp evaluations and function calls. */ | 168 /* Depth in Lisp evaluations and function calls. */ |
169 static int lisp_eval_depth; | 169 static int lisp_eval_depth; |
170 | 170 |
171 /* Maximum allowed depth in Lisp evaluations and function calls. */ | 171 /* Maximum allowed depth in Lisp evaluations and function calls. */ |
172 int max_lisp_eval_depth; | 172 Fixnum max_lisp_eval_depth; |
173 | 173 |
174 /* Nonzero means enter debugger before next function call */ | 174 /* Nonzero means enter debugger before next function call */ |
175 static int debug_on_next_call; | 175 static int debug_on_next_call; |
176 | 176 |
177 /* List of conditions (non-nil atom means all) which cause a backtrace | 177 /* List of conditions (non-nil atom means all) which cause a backtrace |