* atimer.h (run_all_atimers): Removed; not exported.
2011-04-11 Paul Eggert <eggert@cs.ucla.edu>
+ * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
+ * atimer.h (run_all_atimers): Removed; not exported.
+
font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
* font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
was inaccessible from Lisp.
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
/* 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)
}
-/* 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)
void init_atimer (void);
void turn_on_atimers (int);
void stop_other_atimers (struct atimer *);
-void run_all_atimers (void);
Lisp_Object unwind_stop_other_atimers (Lisp_Object);
#endif /* EMACS_ATIMER_H */
-