forked from aniani/vim
updated for version 7.3.035
Problem: Stray semicolon after if statement. (Hari G) Solution: Remove the semicolon.
This commit is contained in:
@@ -231,7 +231,7 @@ get_exe_name(void)
|
||||
* "!xxd" it's found in our starting directory. Needed because
|
||||
* SearchPath() also looks there. */
|
||||
p = mch_getenv("PATH");
|
||||
if (STRLEN(p) + STRLEN(exe_path) + 2 < MAXPATHL);
|
||||
if (STRLEN(p) + STRLEN(exe_path) + 2 < MAXPATHL)
|
||||
{
|
||||
STRCPY(temp, p);
|
||||
STRCAT(temp, ";");
|
||||
|
||||
@@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
35,
|
||||
/**/
|
||||
34,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user