diff options
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index a2e1d1ab04..f2c68730ea 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -6098,7 +6098,7 @@ static void frame_setwidth(frame_T *curfrp, int width) } // Check 'winminheight' for a valid value and reduce it if needed. -void win_setminheight(void) +void did_set_winminheight(void) { bool first = true; @@ -6118,7 +6118,7 @@ void win_setminheight(void) } // Check 'winminwidth' for a valid value and reduce it if needed. -void win_setminwidth(void) +void did_set_winminwidth(void) { bool first = true; |