# HG changeset patch # User Bram Moolenaar # Date 1287923623 -7200 # Node ID 8fdc1210333357780019fa8dbabc34f07d545775 # Parent fa5dee44df3fd23f96090d225dc11dbc4de7bf20 updated for version 7.3.035 Problem: Stray semicolon after if statement. (Hari G) Solution: Remove the semicolon. diff --git a/src/os_win32.c b/src/os_win32.c --- a/src/os_win32.c +++ b/src/os_win32.c @@ -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, ";"); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 35, +/**/ 34, /**/ 33,