We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057e84a commit 3650fd7Copy full SHA for 3650fd7
2 files changed
src/testdir/test_gui.vim
@@ -388,7 +388,9 @@ func Test_set_guifont()
388
call assert_fails('set guifont=xa1bc23d7f', 'E596:')
389
endif
390
391
- if exists('+renderoptions')
+ " This only works if 'renderoptions' exists and does not work for Windows XP
392
+ " and older.
393
+ if exists('+renderoptions') && windowsversion() !~ '^[345]\.'
394
" doing this four times used to cause a crash
395
set renderoptions=type:directx
396
for i in range(5)
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2559,
755
/**/
756
2558,
757
0 commit comments