]> git.eshelyaron.com Git - emacs.git/commitdiff
(max_specpdl_size): Adjust declaration.
authorAndreas Schwab <schwab@suse.de>
Tue, 1 Jan 2002 17:00:16 +0000 (17:00 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 1 Jan 2002 17:00:16 +0000 (17:00 +0000)
src/ChangeLog
src/lisp.h

index 955b1e81f69dff5ab2f93b1fc2d8bd819375ddb6..84468c9145ca3b197258e11d15cfa809568667b0 100644 (file)
@@ -1,3 +1,9 @@
+2002-01-01  Andreas Schwab  <schwab@suse.de>
+
+       * 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  <rms@gnu.org>
 
        * print.c (print_object): Test print_escape_nonascii only for
index 7251274098bdc3b84edd96476354cfc8b2caae64..433ea366543adf4a388f055c378e836e9d9120fb 100644 (file)
@@ -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)