mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
Merge pull request #23255 from lewis6991/vimpatch/9.0.1293
vim-patch:9.0.{1293,1308,1311}: refactor option.c
This commit is contained in:
commit
515106ac08
1028
src/nvim/option.c
1028
src/nvim/option.c
File diff suppressed because it is too large
Load Diff
@ -6098,7 +6098,7 @@ static void frame_setwidth(frame_T *curfrp, int width)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check 'winminheight' for a valid value and reduce it if needed.
|
// Check 'winminheight' for a valid value and reduce it if needed.
|
||||||
void win_setminheight(void)
|
void did_set_winminheight(void)
|
||||||
{
|
{
|
||||||
bool first = true;
|
bool first = true;
|
||||||
|
|
||||||
@ -6118,7 +6118,7 @@ void win_setminheight(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check 'winminwidth' for a valid value and reduce it if needed.
|
// Check 'winminwidth' for a valid value and reduce it if needed.
|
||||||
void win_setminwidth(void)
|
void did_set_winminwidth(void)
|
||||||
{
|
{
|
||||||
bool first = true;
|
bool first = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user