summaryrefslogtreecommitdiff
path: root/src/atimer.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-04-10 23:04:34 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-04-10 23:04:34 -0700
commite192d7d3242cf00b598116b3277bd514af69fb74 (patch)
tree81e32ba529dea0589983542825c373b746b58fc7 /src/atimer.c
parent9247002884de0c64febb0807db428088800c39ff (diff)
downloademacs-e192d7d3242cf00b598116b3277bd514af69fb74.tar.gz
* atimer.c (alarm_signal_handler, run_all_atimers): Now static.
* atimer.h (run_all_atimers): Removed; not exported.
Diffstat (limited to 'src/atimer.c')
-rw-r--r--src/atimer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/atimer.c b/src/atimer.c
index b947ea59ccd..a54b397f52e 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -64,7 +64,7 @@ static void set_alarm (void);
static void schedule_atimer (struct atimer *);
static struct atimer *append_atimer_lists (struct atimer *,
struct atimer *);
-void alarm_signal_handler (int signo);
+static void alarm_signal_handler (int signo);
/* Start a new atimer of type TYPE. TIME specifies when the timer is
@@ -246,7 +246,7 @@ stop_other_atimers (struct atimer *t)
/* Run all timers again, if some have been stopped with a call to
stop_other_atimers. */
-void
+static void
run_all_atimers (void)
{
if (stopped_atimers)
@@ -270,7 +270,7 @@ run_all_atimers (void)
}
-/* A version of run_all_timers suitable for a record_unwind_protect. */
+/* A version of run_all_atimers suitable for a record_unwind_protect. */
Lisp_Object
unwind_stop_other_atimers (Lisp_Object dummy)