(max_specpdl_size, max_lisp_eval_depth): Define as int,
authorAndreas Schwab <schwab@suse.de>
Tue, 1 Jan 2002 16:59:17 +0000 (16:59 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 1 Jan 2002 16:59:17 +0000 (16:59 +0000)
not EMACS_INT, to make them compatible with DEFVAR_INT.

src/eval.c

index a625d67..3776b6d 100644 (file)
@@ -119,7 +119,7 @@ struct specbinding *specpdl_ptr;
 
 /* 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 @@ int lisp_eval_depth;
 
 /* 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 */