mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
* atimer.c (alarm_signal_handler): Do not call set_alarm if
pending_atmers is non-zero.
This commit is contained in:
parent
67156185a7
commit
fcdb28b473
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2004-10-31 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
||||
|
||||
* atimer.c (alarm_signal_handler): Do not call set_alarm if
|
||||
pending_atmers is non-zero.
|
||||
|
||||
2004-10-31 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* dispnew.c (margin_glyphs_to_reserve): Don't use ncols_scale_factor.
|
||||
|
|
|
|||
|
|
@ -397,7 +397,8 @@ alarm_signal_handler (signo)
|
|||
EMACS_GET_TIME (now);
|
||||
}
|
||||
|
||||
set_alarm ();
|
||||
if (! pending_atimers)
|
||||
set_alarm ();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue