Mercurial > hg > xemacs-beta
diff src/frame.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/frame.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/frame.c Mon Sep 20 19:20:08 2004 +0000 @@ -234,7 +234,8 @@ } static void -print_frame (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) +print_frame (Lisp_Object obj, Lisp_Object printcharfun, + int UNUSED (escapeflag)) { struct frame *frm = XFRAME (obj); @@ -773,8 +774,8 @@ * changing which causes frame size adjustment */ void -frame_size_slipped (Lisp_Object specifier, struct frame *f, - Lisp_Object oldval) +frame_size_slipped (Lisp_Object UNUSED (specifier), struct frame *f, + Lisp_Object UNUSED (oldval)) { MARK_FRAME_SIZE_SLIPPED(f); } @@ -3527,8 +3528,8 @@ } static void -icon_glyph_changed (Lisp_Object glyph, Lisp_Object property, - Lisp_Object locale) +icon_glyph_changed (Lisp_Object UNUSED (glyph), Lisp_Object UNUSED (property), + Lisp_Object UNUSED (locale)) { MARK_ICON_CHANGED; }