From 7cff26935fd9cb82b17f9e5af91791158f806fbc Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 1 Jan 2002 16:59:17 +0000 Subject: [PATCH] (max_specpdl_size, max_lisp_eval_depth): Define as int, not EMACS_INT, to make them compatible with DEFVAR_INT. --- src/eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eval.c b/src/eval.c index a625d679e0f..3776b6de016 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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 */ -- 2.39.2