summaryrefslogtreecommitdiffstats
path: root/src/filepath.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-08-27 21:24:26 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-27 21:24:26 +0100
commitaebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87 (patch)
treedbee168afdec1c68a388bf2891dbd9831b496038 /src/filepath.c
parent6d24a51b94beb1991cddce221f90b455e2d50db7 (diff)
patch 9.0.0287: Irix systems no longer existv9.0.0287
Problem: Irix systems no longer exist. Solution: Remove references to Irix. (Yegappan Lakshmanan, closes #10994)
Diffstat (limited to 'src/filepath.c')
-rw-r--r--src/filepath.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/filepath.c b/src/filepath.c
index 646a25e62e..70e0fd4e73 100644
--- a/src/filepath.c
+++ b/src/filepath.c
@@ -4071,10 +4071,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
((char_u **)gap->ga_data)[gap->ga_len++] = p;
}