Mercurial > vim
changeset 2613:8fdc12103333 v7.3.035
updated for version 7.3.035
Problem: Stray semicolon after if statement. (Hari G)
Solution: Remove the semicolon.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 24 Oct 2010 14:33:43 +0200 |
parents | fa5dee44df3f |
children | 56ecdb792c33 |
files | src/os_win32.c src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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, ";");