aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-06-05 11:07:04 +0300
committerPavel Platto <hinidu@gmail.com>2014-08-02 09:16:59 +0300
commit2e831e56c7579653ce86014326b88d6a7221b7fb (patch)
treec53aaa6116f4b0aa54044ef05b221490ddc04d1f
parent215d747e2247ab8d4cbe55ef26d9d12e5e26eca4 (diff)
downloadrneovim-2e831e56c7579653ce86014326b88d6a7221b7fb.tar.gz
rneovim-2e831e56c7579653ce86014326b88d6a7221b7fb.tar.bz2
rneovim-2e831e56c7579653ce86014326b88d6a7221b7fb.zip
Remove DONT_ADD_PATHSEP_TO_DIR used only in legacy Mac
-rw-r--r--src/nvim/path.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c
index ea6390a688..dbbb77a8e9 100644
--- a/src/nvim/path.c
+++ b/src/nvim/path.c
@@ -1225,10 +1225,8 @@ addfile (
/*
* Append a slash or backslash after directory names if none is present.
*/
-#ifndef DONT_ADD_PATHSEP_TO_DIR
if (isdir && (flags & EW_ADDSLASH))
add_pathsep(p);
-#endif
GA_APPEND(char_u *, gap, p);
}
#endif /* !NO_EXPANDPATH */