comparison 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
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
2583 2583
2584 return 1; 2584 return 1;
2585 } 2585 }
2586 2586
2587 static void 2587 static void
2588 iso2022_finalize_coding_stream (struct coding_stream *str) 2588 iso2022_finalize_coding_stream (
2589 #ifdef ENABLE_COMPOSITE_CHARS
2590 struct coding_stream *str
2591 #else
2592 struct coding_stream *UNUSED (str)
2593 #endif
2594 )
2589 { 2595 {
2590 #ifdef ENABLE_COMPOSITE_CHARS 2596 #ifdef ENABLE_COMPOSITE_CHARS
2591 struct iso2022_coding_stream *data = 2597 struct iso2022_coding_stream *data =
2592 CODING_STREAM_TYPE_DATA (str, iso2022); 2598 CODING_STREAM_TYPE_DATA (str, iso2022);
2593 2599
2660 else 2666 else
2661 return Qunbound; 2667 return Qunbound;
2662 } 2668 }
2663 2669
2664 static void 2670 static void
2665 iso2022_print (Lisp_Object cs, Lisp_Object printcharfun, int escapeflag) 2671 iso2022_print (Lisp_Object cs, Lisp_Object printcharfun,
2672 int UNUSED (escapeflag))
2666 { 2673 {
2667 int i; 2674 int i;
2668 2675
2669 write_c_string (printcharfun, "("); 2676 write_c_string (printcharfun, "(");
2670 for (i = 0; i < 4; i++) 2677 for (i = 0; i < 4; i++)