comparison src/filepath.c @ 29898:3276298c67c5 v9.0.0287

patch 9.0.0287: Irix systems no longer exist Commit: https://github.com/vim/vim/commit/aebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Aug 27 21:24:26 2022 +0100 patch 9.0.0287: Irix systems no longer exist Problem: Irix systems no longer exist. Solution: Remove references to Irix. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10994)
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Aug 2022 22:30:03 +0200
parents 77141226eb2e
children adb0de8be4ce
comparison
equal deleted inserted replaced
29897:b33b261218e8 29898:3276298c67c5
4069 slash_adjust(p); 4069 slash_adjust(p);
4070 #endif 4070 #endif
4071 /* 4071 /*
4072 * Append a slash or backslash after directory names if none is present. 4072 * Append a slash or backslash after directory names if none is present.
4073 */ 4073 */
4074 #ifndef DONT_ADD_PATHSEP_TO_DIR
4075 if (isdir && (flags & EW_ADDSLASH)) 4074 if (isdir && (flags & EW_ADDSLASH))
4076 add_pathsep(p); 4075 add_pathsep(p);
4077 #endif
4078 ((char_u **)gap->ga_data)[gap->ga_len++] = p; 4076 ((char_u **)gap->ga_data)[gap->ga_len++] = p;
4079 } 4077 }
4080 4078
4081 /* 4079 /*
4082 * Free the list of files returned by expand_wildcards() or other expansion 4080 * Free the list of files returned by expand_wildcards() or other expansion