cvsdist ce7e79b
--- a2ps-4.13/lib/fonts.c.attr	Wed Jan  9 14:41:27 2002
cvsdist ce7e79b
+++ a2ps-4.13/lib/fonts.c	Wed Jan  9 14:42:01 2002
cvsdist ce7e79b
@@ -2173,7 +2173,7 @@
cvsdist ce7e79b
  * in the encoding specific dictionary
cvsdist ce7e79b
  */
cvsdist ce7e79b
 int
cvsdist ce7e79b
-font_is_to_reencode (PARAM_UNUSED struct a2ps_job * job, const char * key)
cvsdist ce7e79b
+font_is_to_reencode (struct a2ps_job * job PARAM_UNUSED, const char * key)
cvsdist ce7e79b
 {
cvsdist ce7e79b
   return !strequ (key, "Symbol");
cvsdist ce7e79b
 }
cvsdist ce7e79b
--- a2ps-4.13/lib/lister.c.attr	Wed Jan  9 14:41:30 2002
cvsdist ce7e79b
+++ a2ps-4.13/lib/lister.c	Wed Jan  9 14:42:28 2002
cvsdist ce7e79b
@@ -333,7 +333,7 @@
cvsdist ce7e79b
 }
cvsdist ce7e79b
 
cvsdist ce7e79b
 void
cvsdist ce7e79b
-lister_fprint_vertical (struct lister * lister, PARAM_UNUSED FILE *unused,
cvsdist ce7e79b
+lister_fprint_vertical (struct lister * lister, FILE *unused PARAM_UNUSED,
cvsdist ce7e79b
 			void **items, size_t item_number,
cvsdist ce7e79b
 			lister_width_t item_width_fn,
cvsdist ce7e79b
 			lister_print_t item_print_fn)
cvsdist ce7e79b
@@ -483,7 +483,7 @@
cvsdist ce7e79b
 /* FIXME: document */
cvsdist ce7e79b
 
cvsdist ce7e79b
 void
cvsdist ce7e79b
-lister_fprint_horizontal (struct lister * lister, PARAM_UNUSED FILE *unused,
cvsdist ce7e79b
+lister_fprint_horizontal (struct lister * lister, FILE *unused PARAM_UNUSED,
cvsdist ce7e79b
 			  void **items, size_t item_number,
cvsdist ce7e79b
 			  lister_width_t item_width_fn,
cvsdist ce7e79b
 			  lister_print_t item_print_fn)
cvsdist ce7e79b
@@ -577,7 +577,7 @@
cvsdist ce7e79b
 */
cvsdist ce7e79b
 
cvsdist ce7e79b
 void
cvsdist ce7e79b
-lister_fprint_separated (struct lister * lister,PARAM_UNUSED FILE *unused,
cvsdist ce7e79b
+lister_fprint_separated (struct lister * lister,FILE *unused PARAM_UNUSED,
cvsdist ce7e79b
 			 void **items, size_t item_number,
cvsdist ce7e79b
 			 lister_width_t item_width_fn,
cvsdist ce7e79b
 			 lister_print_t item_print_fn)
cvsdist ce7e79b
--- a2ps-4.13/lib/media.c.attr	Wed Jan  9 14:41:33 2002
cvsdist ce7e79b
+++ a2ps-4.13/lib/media.c	Wed Jan  9 14:42:35 2002
cvsdist ce7e79b
@@ -190,7 +190,7 @@
cvsdist ce7e79b
 
cvsdist ce7e79b
 /* Is libpaper used? */
cvsdist ce7e79b
 bool
cvsdist ce7e79b
-a2ps_medium_libpaper_p (PARAM_UNUSED a2ps_job * job, const char * name)
cvsdist ce7e79b
+a2ps_medium_libpaper_p (a2ps_job * job PARAM_UNUSED, const char * name)
cvsdist ce7e79b
 {
cvsdist ce7e79b
   return strequ (name, LIBPAPER_MEDIUM) ? true : false;
cvsdist ce7e79b
 }
cvsdist ce7e79b
--- a2ps-4.13/lib/pathwalk.c.attr	Wed Jan  9 14:41:38 2002
cvsdist ce7e79b
+++ a2ps-4.13/lib/pathwalk.c	Wed Jan  9 14:42:47 2002
cvsdist ce7e79b
@@ -425,14 +425,14 @@
cvsdist ce7e79b
 /* Helping functions for pw_glob. */
cvsdist ce7e79b
 
cvsdist ce7e79b
 static bool
cvsdist ce7e79b
-pw_filter_fnmatch (PARAM_UNUSED const char * dir, const char *file,
cvsdist ce7e79b
+pw_filter_fnmatch (const char * dir PARAM_UNUSED, const char *file,
cvsdist ce7e79b
 		   const char *pattern)
cvsdist ce7e79b
 {
cvsdist ce7e79b
   return !fnmatch (pattern, file, 0);
cvsdist ce7e79b
 }
cvsdist ce7e79b
 
cvsdist ce7e79b
 static void
cvsdist ce7e79b
-pw_filter_da_append (PARAM_UNUSED const char * dir, const char *file,
cvsdist ce7e79b
+pw_filter_da_append (const char * dir PARAM_UNUSED, const char *file,
cvsdist ce7e79b
 		     struct darray *da)
cvsdist ce7e79b
 {
cvsdist ce7e79b
   da_append (da, xstrdup (file));
cvsdist ce7e79b
--- a2ps-4.13/lib/routines.c.attr	Wed Jan  9 14:41:42 2002
cvsdist ce7e79b
+++ a2ps-4.13/lib/routines.c	Wed Jan  9 14:42:54 2002
cvsdist ce7e79b
@@ -235,7 +235,7 @@
cvsdist ce7e79b
  * Unlink the file FILENAME.
cvsdist ce7e79b
  */
cvsdist ce7e79b
 void
cvsdist ce7e79b
-unlink2 (PARAM_UNUSED void * dummy, const char * filename)
cvsdist ce7e79b
+unlink2 (void * dummy PARAM_UNUSED, const char * filename)
cvsdist ce7e79b
 {
cvsdist ce7e79b
   message (msg_tool | msg_file, (stderr, "Unlinking file `%s'\n", filename));
cvsdist ce7e79b
 
cvsdist ce7e79b
--- a2ps-4.13/lib/fonts.l.attr	Wed Jan  9 14:58:38 2002
cvsdist ce7e79b
+++ a2ps-4.13/lib/fonts.l	Wed Jan  9 14:58:52 2002
cvsdist ce7e79b
@@ -585,7 +585,7 @@
cvsdist ce7e79b
  * in the encoding specific dictionary
cvsdist ce7e79b
  */
cvsdist ce7e79b
 int
cvsdist ce7e79b
-font_is_to_reencode (PARAM_UNUSED struct a2ps_job * job, const char * key)
cvsdist ce7e79b
+font_is_to_reencode (struct a2ps_job * job PARAM_UNUSED, const char * key)
cvsdist ce7e79b
 {
cvsdist ce7e79b
   return !strequ (key, "Symbol");
cvsdist ce7e79b
 }