1
0
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:
Bram Moolenaar
2010-10-24 14:33:43 +02:00
parent ebbcb824ba
commit 8bbe993c79
2 changed files with 3 additions and 1 deletions

View File

@@ -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, ";");

View File

@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
35,
/**/
34,
/**/