Mercurial > emacs
diff src/window.c @ 30366:8dd313fc287d
(foreach_window_1): Fix typo reversing an if-condition.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 21 Jul 2000 14:59:18 +0000 |
| parents | fc017b1b2a7d |
| children | e3fe041c4e25 |
line wrap: on
line diff
--- a/src/window.c Fri Jul 21 14:36:24 2000 +0000 +++ b/src/window.c Fri Jul 21 14:59:18 2000 +0000 @@ -5122,8 +5122,8 @@ cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data); else if (!NILP (w->vchild)) cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data); - else if (fn (w, user_data)) - cont = 0; + else + cont = fn (w, user_data); w = NILP (w->next) ? 0 : XWINDOW (w->next); }
