Mercurial > hg > xemacs-beta
diff src/unicode.c @ 2333:ba4677f54a05
[xemacs-hg @ 2004-10-14 17:26:18 by james]
More unused parameter fixes.
author | james |
---|---|
date | Thu, 14 Oct 2004 17:26:25 +0000 |
parents | 04bc9d2f42c7 |
children | ecf1ebac70d8 |
line wrap: on
line diff
--- a/src/unicode.c Wed Oct 13 21:52:14 2004 +0000 +++ b/src/unicode.c Thu Oct 14 17:26:25 2004 +0000 @@ -1234,7 +1234,7 @@ present), this function simply does `int-to-char' and ignores the CHARSETS argument. */ - (code, charsets)) + (code, USED_IF_MULE (charsets))) { #ifdef MULE Lisp_Object_dynarr *dyn; @@ -1638,9 +1638,9 @@ } static void -encode_unicode_char (Lisp_Object charset, int h, int l, - unsigned_char_dynarr *dst, enum unicode_type type, - unsigned int little_endian) +encode_unicode_char (Lisp_Object USED_IF_MULE (charset), int h, + int USED_IF_MULE (l), unsigned_char_dynarr *dst, + enum unicode_type type, unsigned int little_endian) { #ifdef MULE int code = ichar_to_unicode (make_ichar (charset, h & 127, l & 127));