Mercurial > hg > xemacs-beta
diff src/input-method-motif.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 | 70921960b980 |
children | 308d34e9f07d |
line wrap: on
line diff
--- a/src/input-method-motif.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/input-method-motif.c Mon Sep 20 19:20:08 2004 +0000 @@ -40,14 +40,15 @@ /* Create X input method for device */ void -XIM_init_device (struct device *d) +XIM_init_device (struct device *UNUSED (d)) { /* Nothing to do */ } /* Callback for the deleting frame. */ static void -XIM_delete_frame (Widget w, XtPointer client_data, XtPointer call_data) +XIM_delete_frame (Widget UNUSED (w), XtPointer client_data, + XtPointer UNUSED (call_data)) { XmImUnregister ((Widget) client_data); } @@ -115,7 +116,7 @@ } void -XIM_SetGeometry (struct frame *f) +XIM_SetGeometry (struct frame *UNUSED (f)) { }