From: Andreas Schwab Date: Tue, 1 Jan 2002 17:00:16 +0000 (+0000) Subject: (max_specpdl_size): Adjust declaration. X-Git-Tag: ttn-vms-21-2-B4~17370 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c1e11810d51784547d5bdaa614c8957a6bafa3bb;p=emacs.git (max_specpdl_size): Adjust declaration. --- 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)