From 2e831e56c7579653ce86014326b88d6a7221b7fb Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Thu, 5 Jun 2014 11:07:04 +0300 Subject: Remove DONT_ADD_PATHSEP_TO_DIR used only in legacy Mac --- src/nvim/path.c | 2 -- 1 file changed, 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 */ -- cgit