comparison src/eval.c @ 42465:35d03c4b9611

(max_specpdl_size, max_lisp_eval_depth): Define as int, not EMACS_INT, to make them compatible with DEFVAR_INT.
author Andreas Schwab <schwab@suse.de>
date Tue, 01 Jan 2002 16:59:17 +0000
parents fd38a0b6a3ff
children 1507ff35afcd
comparison
equal deleted inserted replaced
42464:597a6ec79ec5 42465:35d03c4b9611
117 117
118 struct specbinding *specpdl_ptr; 118 struct specbinding *specpdl_ptr;
119 119
120 /* Maximum size allowed for specpdl allocation */ 120 /* Maximum size allowed for specpdl allocation */
121 121
122 EMACS_INT max_specpdl_size; 122 int max_specpdl_size;
123 123
124 /* Depth in Lisp evaluations and function calls. */ 124 /* Depth in Lisp evaluations and function calls. */
125 125
126 int lisp_eval_depth; 126 int lisp_eval_depth;
127 127
128 /* Maximum allowed depth in Lisp evaluations and function calls. */ 128 /* Maximum allowed depth in Lisp evaluations and function calls. */
129 129
130 EMACS_INT max_lisp_eval_depth; 130 int max_lisp_eval_depth;
131 131
132 /* Nonzero means enter debugger before next function call */ 132 /* Nonzero means enter debugger before next function call */
133 133
134 int debug_on_next_call; 134 int debug_on_next_call;
135 135