Mercurial > hg > xemacs-beta
comparison 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 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
41 | 41 |
42 static void tty_raise_frame (struct frame *); | 42 static void tty_raise_frame (struct frame *); |
43 | 43 |
44 | 44 |
45 static void | 45 static void |
46 tty_init_frame_1 (struct frame *f, Lisp_Object props, | 46 tty_init_frame_1 (struct frame *f, Lisp_Object UNUSED (props), |
47 int frame_name_is_defaulted) | 47 int frame_name_is_defaulted) |
48 { | 48 { |
49 struct device *d = XDEVICE (FRAME_DEVICE (f)); | 49 struct device *d = XDEVICE (FRAME_DEVICE (f)); |
50 struct console *c = XCONSOLE (DEVICE_CONSOLE (d)); | 50 struct console *c = XCONSOLE (DEVICE_CONSOLE (d)); |
51 | 51 |
77 | 77 |
78 enqueue_magic_eval_event (tty_select_frame_if_unhidden, frame); | 78 enqueue_magic_eval_event (tty_select_frame_if_unhidden, frame); |
79 } | 79 } |
80 | 80 |
81 static void | 81 static void |
82 tty_after_init_frame (struct frame *f, int first_on_device, | 82 tty_after_init_frame (struct frame *f, int UNUSED (first_on_device), |
83 int first_on_console) | 83 int first_on_console) |
84 { | 84 { |
85 if (first_on_console) | 85 if (first_on_console) |
86 call1 (Qinit_post_tty_win, FRAME_CONSOLE (f)); | 86 call1 (Qinit_post_tty_win, FRAME_CONSOLE (f)); |
87 } | 87 } |
193 | 193 |
194 return Qunbound; | 194 return Qunbound; |
195 } | 195 } |
196 | 196 |
197 static int | 197 static int |
198 tty_internal_frame_property_p (struct frame *f, Lisp_Object property) | 198 tty_internal_frame_property_p (struct frame *UNUSED (f), Lisp_Object property) |
199 { | 199 { |
200 return EQ (property, Qframe_number); | 200 return EQ (property, Qframe_number); |
201 } | 201 } |
202 | 202 |
203 static Lisp_Object | 203 static Lisp_Object |