mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
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 #8871)
This commit is contained in:
committed by
Bram Moolenaar
parent
f2a8bafa4b
commit
ee2cbcd99c
@ -755,6 +755,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3441,
|
||||||
/**/
|
/**/
|
||||||
3440,
|
3440,
|
||||||
/**/
|
/**/
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
:: Use Vim to copy the tutor, it knows the value of $VIMRUNTIME
|
:: Use Vim to copy the tutor, it knows the value of $VIMRUNTIME
|
||||||
FOR %%d in (. %TMP% %TEMP%) DO (
|
FOR %%d in (. %TMP% %TEMP%) DO (
|
||||||
call :test_dir_writable %~dpf0 %%d
|
call :test_dir_writable "%~dpf0" %%d
|
||||||
IF NOT ERRORLEVEL 1 GOTO dir_ok
|
IF NOT ERRORLEVEL 1 GOTO dir_ok
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user