diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-17 11:20:25 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-05 10:01:21 -0300 |
commit | 8a0043130fed84f67c83451e675d08617216c6eb (patch) | |
tree | 0a7be28ab310891692feb2eec839a5ee06a0eccf /src/misc1.c | |
parent | 2fe018ab888010335ad8fc041522e2aff66c67a1 (diff) | |
download | rneovim-8a0043130fed84f67c83451e675d08617216c6eb.tar.gz rneovim-8a0043130fed84f67c83451e675d08617216c6eb.tar.bz2 rneovim-8a0043130fed84f67c83451e675d08617216c6eb.zip |
Remove Amiga stuff
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 0dd6e2766b..4f36b88584 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -2949,7 +2949,7 @@ expand_env_esc ( /* if var[] ends in a path separator and tail[] starts * with it, skip a character */ if (*var != NUL && after_pathsep(dst, dst + c) -#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) +#if defined(BACKSLASH_IN_FILENAME) && dst[-1] != ':' #endif && vim_ispathsep(*tail)) |