Mercurial > hg > xemacs-beta
diff src/frame-tty.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 | 79c6ff3eef26 |
children | facf3239ba30 |
line wrap: on
line diff
--- a/src/frame-tty.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/frame-tty.c Mon Sep 20 19:20:08 2004 +0000 @@ -43,7 +43,7 @@ static void -tty_init_frame_1 (struct frame *f, Lisp_Object props, +tty_init_frame_1 (struct frame *f, Lisp_Object UNUSED (props), int frame_name_is_defaulted) { struct device *d = XDEVICE (FRAME_DEVICE (f)); @@ -79,7 +79,7 @@ } static void -tty_after_init_frame (struct frame *f, int first_on_device, +tty_after_init_frame (struct frame *f, int UNUSED (first_on_device), int first_on_console) { if (first_on_console) @@ -195,7 +195,7 @@ } static int -tty_internal_frame_property_p (struct frame *f, Lisp_Object property) +tty_internal_frame_property_p (struct frame *UNUSED (f), Lisp_Object property) { return EQ (property, Qframe_number); }