Mercurial > hg > xemacs-beta
diff src/mule-charset.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 | 190b164ddcac |
children | fdefd0186b75 |
line wrap: on
line diff
--- a/src/mule-charset.c Wed Aug 08 12:15:04 2001 +0000 +++ b/src/mule-charset.c Mon Aug 13 04:46:48 2001 +0000 @@ -329,8 +329,8 @@ Bytecount non_ascii_charptr_copy_char (const Bufbyte *src, Bufbyte *dst) { - unsigned int bytes = REP_BYTES_BY_FIRST_BYTE (*src); - unsigned int i; + Bytecount bytes = REP_BYTES_BY_FIRST_BYTE (*src); + Bytecount i; for (i = bytes; i; i--, dst++, src++) *dst = *src; return bytes; @@ -350,7 +350,7 @@ { Bufbyte str[MAX_EMCHAR_LEN]; Bufbyte *strptr = str; - unsigned int bytes; + Bytecount bytes; str[0] = (Bufbyte) ch;