aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorStefan Monnier2002-03-04 23:41:00 +0000
committerStefan Monnier2002-03-04 23:41:00 +0000
commit31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch)
tree4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/eval.c
parentc01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff)
downloademacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.tar.gz
emacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.zip
Change defvar_int def and vars to use EMACS_INT instead of just int.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 0970086fedc..c2ebfd46fe8 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
122int max_specpdl_size; 122EMACS_INT 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
130int max_lisp_eval_depth; 130EMACS_INT 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