···7373 int bar_type);
74747575/* Reset the alarm to auto-hide the bar in BAR_TIMEOUT seconds. */
7676-static void
7777-reset_alarm(void)
7676+void
7777+bar_reset_alarm(void)
7878{
7979 struct timeval timeout;
8080 struct itimerval alarmtimer;
···169169170170 raise_utility_windows();
171171172172- reset_alarm();
172172+ bar_reset_alarm();
173173}
174174175175/* Show vscreen listing in bar. */
···187187188188 raise_utility_windows();
189189190190- reset_alarm();
190190+ bar_reset_alarm();
191191}
192192193193int
···951951marked_message(char *msg, int mark_start, int mark_end, int bar_type)
952952{
953953 /* Schedule the bar to be hidden after some amount of time. */
954954- reset_alarm();
954954+ bar_reset_alarm();
955955 marked_message_internal(msg, mark_start, mark_end, bar_type);
956956}
957957···990990 update_last_message(msg, mark_start, mark_end);
991991992992 if (bar_type != BAR_IS_STICKY && bar_time_left())
993993- reset_alarm();
993993+ bar_reset_alarm();
994994}
995995996996/*
···10201020show_last_message(void)
10211021{
10221022 redraw_last_message();
10231023- reset_alarm();
10231023+ bar_reset_alarm();
10241024}
1025102510261026/* Free any memory associated with the bar. */