mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00
refactor: pre-incr to post-incr
This commit is contained in:
@@ -1013,7 +1013,7 @@ void draw_tabline(void)
|
||||
|
||||
modified = false;
|
||||
|
||||
for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount) {
|
||||
for (wincount = 0; wp != NULL; wp = wp->w_next, wincount++) {
|
||||
if (bufIsChanged(wp->w_buffer)) {
|
||||
modified = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user