Mercurial > hg > xemacs-beta
diff src/text.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/text.c Wed Oct 13 21:52:14 2004 +0000 +++ b/src/text.c Thu Oct 14 17:26:25 2004 +0000 @@ -1175,10 +1175,10 @@ Bytecount copy_text_between_formats (const Ibyte *src, Bytecount srclen, Internal_Format srcfmt, - Lisp_Object srcobj, + Lisp_Object USED_IF_MULE (srcobj), Ibyte *dst, Bytecount dstlen, Internal_Format dstfmt, - Lisp_Object dstobj, + Lisp_Object USED_IF_MULE (dstobj), Bytecount *src_used) { if (srcfmt == dstfmt && @@ -1270,8 +1270,9 @@ /************************************************************************/ void -find_charsets_in_ibyte_string (unsigned char *charsets, const Ibyte *str, - Bytecount len) +find_charsets_in_ibyte_string (unsigned char *charsets, + const Ibyte *USED_IF_MULE (str), + Bytecount USED_IF_MULE (len)) { #ifndef MULE /* Telescope this. */ @@ -1297,8 +1298,9 @@ } void -find_charsets_in_ichar_string (unsigned char *charsets, const Ichar *str, - Charcount len) +find_charsets_in_ichar_string (unsigned char *charsets, + const Ichar *USED_IF_MULE (str), + Charcount USED_IF_MULE (len)) { #ifndef MULE /* Telescope this. */ @@ -1343,7 +1345,7 @@ } int -ichar_string_displayed_columns (const Ichar *str, Charcount len) +ichar_string_displayed_columns (const Ichar *USED_IF_MULE (str), Charcount len) { #ifdef MULE int cols = 0; @@ -1359,7 +1361,8 @@ } Charcount -ibyte_string_nonascii_chars (const Ibyte *str, Bytecount len) +ibyte_string_nonascii_chars (const Ibyte *USED_IF_MULE (str), + Bytecount USED_IF_MULE (len)) { #ifdef MULE const Ibyte *end = str + len; @@ -3648,7 +3651,7 @@ `int-to-char of the resulting ARG1' is returned, and ARG2 is always ignored. */ - (charset, arg1, arg2)) + (charset, arg1, USED_IF_MULE (arg2))) { #ifdef MULE Lisp_Charset *cs;