comparison 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
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
232 232
233 return Qnil; 233 return Qnil;
234 } 234 }
235 235
236 static void 236 static void
237 print_frame (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) 237 print_frame (Lisp_Object obj, Lisp_Object printcharfun,
238 int UNUSED (escapeflag))
238 { 239 {
239 struct frame *frm = XFRAME (obj); 240 struct frame *frm = XFRAME (obj);
240 241
241 if (print_readably) 242 if (print_readably)
242 printing_unreadable_object ("#<frame %s 0x%x>", 243 printing_unreadable_object ("#<frame %s 0x%x>",
771 /* 772 /*
772 * This is a "specifier changed in frame" handler for various specifiers 773 * This is a "specifier changed in frame" handler for various specifiers
773 * changing which causes frame size adjustment 774 * changing which causes frame size adjustment
774 */ 775 */
775 void 776 void
776 frame_size_slipped (Lisp_Object specifier, struct frame *f, 777 frame_size_slipped (Lisp_Object UNUSED (specifier), struct frame *f,
777 Lisp_Object oldval) 778 Lisp_Object UNUSED (oldval))
778 { 779 {
779 MARK_FRAME_SIZE_SLIPPED(f); 780 MARK_FRAME_SIZE_SLIPPED(f);
780 } 781 }
781 782
782 DEFUN ("framep", Fframep, 1, 1, 0, /* 783 DEFUN ("framep", Fframep, 1, 1, 0, /*
3525 3526
3526 f->icon_changed = 0; 3527 f->icon_changed = 0;
3527 } 3528 }
3528 3529
3529 static void 3530 static void
3530 icon_glyph_changed (Lisp_Object glyph, Lisp_Object property, 3531 icon_glyph_changed (Lisp_Object UNUSED (glyph), Lisp_Object UNUSED (property),
3531 Lisp_Object locale) 3532 Lisp_Object UNUSED (locale))
3532 { 3533 {
3533 MARK_ICON_CHANGED; 3534 MARK_ICON_CHANGED;
3534 } 3535 }
3535 3536
3536 3537