changeset 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 597a6ec79ec5
children 6b91b82d2eb1
files src/eval.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c	Tue Jan 01 16:55:58 2002 +0000
+++ b/src/eval.c	Tue Jan 01 16:59:17 2002 +0000
@@ -119,7 +119,7 @@
 
 /* Maximum size allowed for specpdl allocation */
 
-EMACS_INT max_specpdl_size;
+int max_specpdl_size;
 
 /* Depth in Lisp evaluations and function calls.  */
 
@@ -127,7 +127,7 @@
 
 /* Maximum allowed depth in Lisp evaluations and function calls.  */
 
-EMACS_INT max_lisp_eval_depth;
+int max_lisp_eval_depth;
 
 /* Nonzero means enter debugger before next function call */