1
0
forked from aniani/vim

patch 8.2.4750: small pieces of dead code

Problem:    Small pieces of dead code.
Solution:   Remove the dead code. (Goc Dundar, closes #10190) Rename the
            qftf_cb struct member to avoid confusion.
This commit is contained in:
=?UTF-8?q?Dundar=20G=C3=B6c?=
2022-04-14 20:43:56 +01:00
committed by Bram Moolenaar
parent eca7c60d68
commit b836658a04
5 changed files with 18 additions and 18 deletions

View File

@@ -1576,7 +1576,7 @@ expand_env_esc(
c = (int)STRLEN(var);
// if var[] ends in a path separator and tail[] starts
// with it, skip a character
if (*var != NUL && after_pathsep(dst, dst + c)
if (after_pathsep(dst, dst + c)
#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
&& dst[-1] != ':'
#endif