Mercurial > hg > xemacs-beta
diff src/objects-xlike-inc.c @ 4124:9a633a00c3f2
[xemacs-hg @ 2007-08-17 08:08:05 by crestani]
2007-08-15 Marcus Crestani <crestani@xemacs.org>
* database.c (dbm_map): Add typecast.
* database.c (dbm_get): Add typecast.
* gc.c (gc_state_type): Declare type.
* objects-tty.c (tty_find_charset_font): Add typecast.
* objects-xlike-inc.c (count_hyphens): Add typecast.
* objects-xlike-inc.c (endif): Add typecast.
author | crestani |
---|---|
date | Fri, 17 Aug 2007 08:08:10 +0000 |
parents | 5989b9bbb612 |
children | 4143b78d0df0 |
line wrap: on
line diff
--- a/src/objects-xlike-inc.c Fri Aug 17 08:04:28 2007 +0000 +++ b/src/objects-xlike-inc.c Fri Aug 17 08:08:10 2007 +0000 @@ -61,7 +61,7 @@ const Ibyte *new_hyphening; for (hyphen_count = 0; - NULL != (new_hyphening = memchr((const void *)hyphening, '-', length)); + NULL != (new_hyphening = (Ibyte *) memchr((const void *)hyphening, '-', length)); hyphen_count++) { ++new_hyphening; @@ -786,7 +786,7 @@ for (j = 0; j < registries_len; ++j) { if (0 == qxestrcasecmp(XSTRING_DATA(XVECTOR_DATA(registries)[j]), - FALLBACK_ASCII_REGISTRY)) + (Ibyte *) FALLBACK_ASCII_REGISTRY)) { have_latin1 = 1; break;