mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0199
This commit is contained in:
@@ -726,7 +726,7 @@ static VALUE window_s_count()
|
||||
win_T *w;
|
||||
int n = 0;
|
||||
|
||||
for (w = firstwin; w; w = w->w_next)
|
||||
for (w = firstwin; w != NULL; w = w->w_next)
|
||||
n++;
|
||||
return INT2NUM(n);
|
||||
#else
|
||||
|
Reference in New Issue
Block a user