diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-05 19:35:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-05 19:35:38 +0200 |
commit | e60c2e5e1c8df565076c392c3052c34078fda777 (patch) | |
tree | 9fcf0bb1bec38bf1221eebc13abad55579670a55 /src/misc1.c | |
parent | 8795374bd31a98e488e1ce293604f17eec33067b (diff) | |
download | vim-git-e60c2e5e1c8df565076c392c3052c34078fda777.tar.gz |
updated for version 7.3.1123v7.3.1123
Problem: Can't build tiny Vim on MS-Windows.
Solution: Adjust #ifdef around using modif_fname(). (Mike Williams)
Diffstat (limited to 'src/misc1.c')
-rw-r--r-- | src/misc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c index 655734538..5d035328e 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -4607,7 +4607,7 @@ home_replace(buf, src, dst, dstlen, one) if (homedir_env != NULL && *homedir_env == NUL) homedir_env = NULL; -#if defined(FEAT_MODIFY_FNAME) || defined(WIN3264) +#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) if (homedir_env != NULL && vim_strchr(homedir_env, '~') != NULL) { int usedlen = 0; |