diff src/mule-coding.c @ 2286:04bc9d2f42c7

[xemacs-hg @ 2004-09-20 19:18:55 by james] Mark all unused parameters as unused. Also eliminate some unneeded local variables.
author james
date Mon, 20 Sep 2004 19:20:08 +0000
parents a8d8f419b459
children ecf1ebac70d8
line wrap: on
line diff
--- a/src/mule-coding.c	Mon Sep 20 19:11:29 2004 +0000
+++ b/src/mule-coding.c	Mon Sep 20 19:20:08 2004 +0000
@@ -2585,7 +2585,13 @@
 }
 
 static void
-iso2022_finalize_coding_stream (struct coding_stream *str)
+iso2022_finalize_coding_stream (
+#ifdef ENABLE_COMPOSITE_CHARS
+				struct coding_stream *str
+#else
+				struct coding_stream *UNUSED (str)
+#endif
+				)
 {
 #ifdef ENABLE_COMPOSITE_CHARS
   struct iso2022_coding_stream *data =
@@ -2662,7 +2668,8 @@
 }
 
 static void
-iso2022_print (Lisp_Object cs, Lisp_Object printcharfun, int escapeflag)
+iso2022_print (Lisp_Object cs, Lisp_Object printcharfun,
+	       int UNUSED (escapeflag))
 {
   int i;