diff src/backtrace.h @ 647:b39c14581166

[xemacs-hg @ 2001-08-13 04:45:47 by ben] removal of unsigned, size_t, etc.
author ben
date Mon, 13 Aug 2001 04:46:48 +0000
parents af57a77cbc92
children 943eaba38521
line wrap: on
line diff
--- a/src/backtrace.h	Wed Aug 08 12:15:04 2001 +0000
+++ b/src/backtrace.h	Mon Aug 13 04:46:48 2001 +0000
@@ -151,7 +151,7 @@
 /* Most callers should simply use specbind() and unbind_to(), but if
    speed is REALLY IMPORTANT, you can use the faster macros below */
 void specbind_magic (Lisp_Object, Lisp_Object);
-void grow_specpdl (size_t reserved);
+void grow_specpdl (EMACS_INT reserved);
 void unbind_to_hairy (int);
 extern int specpdl_size;
 
@@ -219,7 +219,7 @@
 
 /* Request enough room for SIZE future entries on special binding stack */
 #define SPECPDL_RESERVE(size) do {			\
-  size_t SR_size = (size);				\
+  EMACS_INT SR_size = (size);				\
   if (specpdl_depth() + SR_size >= specpdl_size)	\
     grow_specpdl (SR_size);				\
 } while (0)