Skip to content

Commit ee2cbcd

Browse files
chrisbrabrammool
authored andcommitted
patch 8.2.3441: MS-Windows: vimtutor can't handle path with spaces
Problem: MS-Windows: vimtutor can't handle path with spaces. Solution: Add double quotes. (Christian Brabandt, closes vim#8871)
1 parent f2a8baf commit ee2cbcd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,8 @@ static char *(features[]) =
755755

756756
static int included_patches[] =
757757
{ /* Add new patch number below this line */
758+
/**/
759+
3441,
758760
/**/
759761
3440,
760762
/**/

vimtutor.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
:: Use Vim to copy the tutor, it knows the value of $VIMRUNTIME
1313
FOR %%d in (. %TMP% %TEMP%) DO (
14-
call :test_dir_writable %~dpf0 %%d
14+
call :test_dir_writable "%~dpf0" %%d
1515
IF NOT ERRORLEVEL 1 GOTO dir_ok
1616
)
1717

0 commit comments

Comments
 (0)