diff src/gui-x.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 183866b06e0b
children fdefd0186b75
line wrap: on
line diff
--- a/src/gui-x.c	Wed Aug 08 12:15:04 2001 +0000
+++ b/src/gui-x.c	Mon Aug 13 04:46:48 2001 +0000
@@ -43,7 +43,7 @@
 #include "opaque.h"
 
 /* we need a unique id for each popup menu, dialog box, and scrollbar */
-static unsigned int lwlib_id_tick;
+static LWLIB_ID lwlib_id_tick;
 
 LWLIB_ID
 new_lwlib_id (void)
@@ -371,7 +371,7 @@
     LISP_STRING_TO_EXTERNAL_MALLOC (string, retval, Qlwlib_encoding);
   else
     {
-      size_t namelen = XSTRING_LENGTH (string);
+      Bytecount namelen = XSTRING_LENGTH (string);
       Bufbyte *chars = (Bufbyte *) alloca (namelen + 3);
       chars[0] = '%';
       chars[1] = '_';