From c1e11810d51784547d5bdaa614c8957a6bafa3bb Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 1 Jan 2002 17:00:16 +0000 Subject: [PATCH] (max_specpdl_size): Adjust declaration. --- src/ChangeLog | 6 ++++++ src/lisp.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 955b1e81f69..84468c9145c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2002-01-01 Andreas Schwab + + * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int, + not EMACS_INT, to make them compatible with DEFVAR_INT. + * lisp.h (max_specpdl_size): Adjust declaration. + 2002-01-01 Richard M. Stallman * print.c (print_object): Test print_escape_nonascii only for diff --git a/src/lisp.h b/src/lisp.h index 7251274098b..433ea366543 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1653,7 +1653,7 @@ extern struct specbinding *specpdl; extern struct specbinding *specpdl_ptr; extern int specpdl_size; -extern EMACS_INT max_specpdl_size; +extern int max_specpdl_size; #define BINDING_STACK_SIZE() (specpdl_ptr - specpdl) -- 2.39.2