diff options
| author | Stefan Monnier | 2002-03-04 23:41:00 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-03-04 23:41:00 +0000 |
| commit | 31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch) | |
| tree | 4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/eval.c | |
| parent | c01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff) | |
| download | emacs-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.c | 4 |
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 | ||
| 122 | int max_specpdl_size; | 122 | EMACS_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 | ||
| 130 | int max_lisp_eval_depth; | 130 | EMACS_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 | ||