Skip to content

Commit

Permalink
Merge pull request #1379 from ychin/fix-fullscreen-option-broken-upst…
Browse files Browse the repository at this point in the history
…ream-merge

Fix `set fullscreen` not working after upstream Vim merge
  • Loading branch information
ychin authored Mar 6, 2023
2 parents df0ffe9 + 0f7987a commit 87dda95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/option.c
Original file line number Diff line number Diff line change
Expand Up @@ -3505,7 +3505,7 @@ did_set_textmode(optset_T *args)
char *
did_set_fullscreen(optset_T *args)
{
long old_value = args->os_oldval.number;
int old_value = args->os_oldval.boolean;
if (p_fullscreen && !old_value)
{
guicolor_T fg, bg;
Expand Down

0 comments on commit 87dda95

Please sign in to comment.