1
0
forked from aniani/vim

patch 8.1.0904: USE_LONG_FNAME never defined

Problem:    USE_LONG_FNAME never defined.
Solution:   Remove using USE_LONG_FNAME. (Ken Takata, closes #3938)
This commit is contained in:
Bram Moolenaar
2019-02-12 22:37:27 +01:00
parent beb7574d6b
commit 00f148d2f2
4 changed files with 10 additions and 33 deletions

View File

@@ -3826,11 +3826,8 @@ do_ecmd(
if (sfname == NULL)
sfname = ffname;
#ifdef USE_FNAME_CASE
# ifdef USE_LONG_FNAME
if (USE_LONG_FNAME)
# endif
if (sfname != NULL)
fname_case(sfname, 0); /* set correct case for sfname */
if (sfname != NULL)
fname_case(sfname, 0); /* set correct case for sfname */
#endif
if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))