From 8bbe993c79023261d83931dd9effc7caf19bf659 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 24 Oct 2010 14:33:43 +0200 Subject: [PATCH] updated for version 7.3.035 Problem: Stray semicolon after if statement. (Hari G) Solution: Remove the semicolon. --- src/os_win32.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/os_win32.c b/src/os_win32.c index 100c39567..3fdd41b6d 100644 --- 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 index 934903ddd..e0f73f25f 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 35, /**/ 34, /**/