diff src/editfns.c @ 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 5fd7ba8b56e7
children 6e99cc8c6ca5
line wrap: on
line diff
--- a/src/editfns.c	Wed Aug 08 12:15:04 2001 +0000
+++ b/src/editfns.c	Mon Aug 13 04:46:48 2001 +0000
@@ -1105,7 +1105,7 @@
        (format_string, time_))
 {
   time_t value;
-  size_t size;
+  Memory_Count size;
 
   CHECK_STRING (format_string);
 
@@ -1268,7 +1268,8 @@
 {
   time_t value;
   char *the_ctime;
-  size_t len;
+  EMACS_INT len; /* this is what make_ext_string() accepts; ####
+		    should it be an Extcount? */
 
   if (! lisp_to_time (specified_time, &value))
     value = -1;