more comparison outside loop)

SVN revision: 4658
This commit is contained in:
Carsten Haitzler 2001-04-18 22:42:34 +00:00
parent 50855cb22d
commit 45f9adc1d5
1 changed files with 5 additions and 3 deletions

View File

@ -75,10 +75,12 @@ e_event_filter_events_handle(Eevent * ev)
{
Ev_Handler *h;
for (h = handler[evp->type]; h; h = h->next)
if (!evp->ignore)
{
if ((!evp->ignore) && (h->func))
h->func(evp);
for (h = handler[evp->type]; h; h = h->next)
{
if (h->func) h->func(evp);
}
}
}
}