Mercurial > hg > xemacs-beta
diff src/device-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 | a8d8f419b459 |
children | 3d8143fc88e1 |
line wrap: on
line diff
--- a/src/device-tty.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/device-tty.c Mon Sep 20 19:20:08 2004 +0000 @@ -51,7 +51,7 @@ } static void -tty_init_device (struct device *d, Lisp_Object props) +tty_init_device (struct device *d, Lisp_Object UNUSED (props)) { struct console *con = XCONSOLE (DEVICE_CONSOLE (d)); Lisp_Object terminal_type = CONSOLE_TTY_DATA (con)->terminal_type; @@ -113,7 +113,7 @@ #ifdef SIGWINCH static SIGTYPE -tty_device_size_change_signal (int signo) +tty_device_size_change_signal (int UNUSED (signo)) { int old_errno = errno; asynch_device_change_pending++;