mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
updated for version 7.2.415
Problem: Win32: Can't open a remote file when starting Vim. Solution: Don't invoke cygwin_conv_path() for URLs. (Tomoya Adachi)
This commit is contained in:
@@ -1477,7 +1477,7 @@ parse_command_name(parmp)
|
|||||||
++initstr;
|
++initstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Avoid using evim mode for "editor". */
|
/* Use evim mode for "evim" and "egvim", not for "editor". */
|
||||||
if (TOLOWER_ASC(initstr[0]) == 'e'
|
if (TOLOWER_ASC(initstr[0]) == 'e'
|
||||||
&& (TOLOWER_ASC(initstr[1]) == 'v'
|
&& (TOLOWER_ASC(initstr[1]) == 'v'
|
||||||
|| TOLOWER_ASC(initstr[1]) == 'g'))
|
|| TOLOWER_ASC(initstr[1]) == 'g'))
|
||||||
@@ -2262,7 +2262,7 @@ scripterror:
|
|||||||
* Look for evidence of non-Cygwin paths before we bother.
|
* Look for evidence of non-Cygwin paths before we bother.
|
||||||
* This is only for when using the Unix files.
|
* This is only for when using the Unix files.
|
||||||
*/
|
*/
|
||||||
if (strpbrk(p, "\\:") != NULL)
|
if (strpbrk(p, "\\:") != NULL && !path_with_url(p))
|
||||||
{
|
{
|
||||||
char posix_path[PATH_MAX];
|
char posix_path[PATH_MAX];
|
||||||
|
|
||||||
|
@@ -681,6 +681,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 */
|
||||||
|
/**/
|
||||||
|
415,
|
||||||
/**/
|
/**/
|
||||||
414,
|
414,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user