From: Andreas Schwab Date: Tue, 1 Jan 2002 16:59:17 +0000 (+0000) Subject: (max_specpdl_size, max_lisp_eval_depth): Define as int, X-Git-Tag: ttn-vms-21-2-B4~17371 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7cff26935fd9cb82b17f9e5af91791158f806fbc;p=emacs.git (max_specpdl_size, max_lisp_eval_depth): Define as int, not EMACS_INT, to make them compatible with DEFVAR_INT. --- 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 */