diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-06 22:13:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-06 22:13:01 +0200 |
commit | 00d253e2b2f435a5386582c3f857008e7ac355c2 (patch) | |
tree | 71bbea4e4c6efa593a85266e445d82377a65f454 /src/popupwin.c | |
parent | ee4e0c1e9a81cb5d96e0060203a9033c2f28588e (diff) | |
download | vim-git-00d253e2b2f435a5386582c3f857008e7ac355c2.tar.gz |
patch 8.2.0523: loops are repeatedv8.2.0523
Problem: Loops are repeated.
Solution: Use FOR_ALL_ macros. (Yegappan Lakshmanan, closes #5882)
Diffstat (limited to 'src/popupwin.c')
-rw-r--r-- | src/popupwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/popupwin.c b/src/popupwin.c index 608db4c09..863439e83 100644 --- a/src/popupwin.c +++ b/src/popupwin.c @@ -2133,7 +2133,7 @@ popup_close_and_callback(win_T *wp, typval_T *arg) // - another popup window with a terminal // - the previous window // - the first one. - for (owp = first_popupwin; owp != NULL; owp = owp->w_next) + FOR_ALL_POPUPWINS(owp) if (owp != curwin && owp->w_buffer->b_term != NULL) break; if (owp != NULL) |