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 30fe886 commit d0b6c6cCopy full SHA for d0b6c6c
2 files changed
src/testdir/setup.vim
@@ -24,5 +24,7 @@ if 1
24
" Make sure $HOME does not get read or written.
25
" It must exist, gnome tries to create $HOME/.gnome2
26
let $HOME = getcwd() . '/XfakeHOME'
27
- call mkdir($HOME)
+ if !isdirectory($HOME)
28
+ call mkdir($HOME)
29
+ endif
30
endif
src/version.c
@@ -769,6 +769,8 @@ static char *(features[]) =
769
770
static int included_patches[] =
771
{ /* Add new patch number below this line */
772
+/**/
773
+ 810,
774
/**/
775
809,
776
0 commit comments