aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2002-01-01 16:59:17 +0000
committerAndreas Schwab2002-01-01 16:59:17 +0000
commit7cff26935fd9cb82b17f9e5af91791158f806fbc (patch)
tree119db812bb16248502fab5a55eb9bc103e46f02c /src
parent7f93e2ab98701ec98916fb107f48216fc0d2360e (diff)
downloademacs-7cff26935fd9cb82b17f9e5af91791158f806fbc.tar.gz
emacs-7cff26935fd9cb82b17f9e5af91791158f806fbc.zip
(max_specpdl_size, max_lisp_eval_depth): Define as int,
not EMACS_INT, to make them compatible with DEFVAR_INT.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c4
1 files 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;
119 119
120/* Maximum size allowed for specpdl allocation */ 120/* Maximum size allowed for specpdl allocation */
121 121
122EMACS_INT max_specpdl_size; 122int max_specpdl_size;
123 123
124/* Depth in Lisp evaluations and function calls. */ 124/* Depth in Lisp evaluations and function calls. */
125 125
@@ -127,7 +127,7 @@ 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
130EMACS_INT max_lisp_eval_depth; 130int 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