comparison src/gtk-xemacs.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 23d90a805259
children 53d45fc43132
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
411 return (TRUE); 411 return (TRUE);
412 } 412 }
413 } 413 }
414 414
415 Lisp_Object 415 Lisp_Object
416 xemacs_gtk_convert_color(GdkColor *c, GtkWidget *w) 416 xemacs_gtk_convert_color(GdkColor *c, GtkWidget *UNUSED (w))
417 { 417 {
418 char color_buf[255]; 418 char color_buf[255];
419 419
420 sprintf (color_buf, "#%04x%04x%04x", c->red, c->green, c->blue); 420 sprintf (color_buf, "#%04x%04x%04x", c->red, c->green, c->blue);
421 421