Mercurial > hg > xemacs-beta
comparison src/signal.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 | 51e4a77ed447 |
children | ecf1ebac70d8 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
461 #ifdef SIGIO | 461 #ifdef SIGIO |
462 | 462 |
463 /* Signal handler for SIGIO. */ | 463 /* Signal handler for SIGIO. */ |
464 | 464 |
465 static void | 465 static void |
466 input_available_signal (int signo) | 466 input_available_signal (int SIG_ARG_MAYBE_UNUSED (signo)) |
467 { | 467 { |
468 something_happened = 1; /* tell QUIT to wake up */ | 468 something_happened = 1; /* tell QUIT to wake up */ |
469 quit_check_signal_happened = 1; | 469 quit_check_signal_happened = 1; |
470 quit_check_signal_tick_count++; | 470 quit_check_signal_tick_count++; |
471 EMACS_REESTABLISH_SIGNAL (signo, input_available_signal); | 471 EMACS_REESTABLISH_SIGNAL (signo, input_available_signal); |