summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/os_unix.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 3acd6acc20..0ccbf1a473 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -5482,7 +5482,7 @@ mch_expand_wildcards(num_pat, pat, num_file, file, flags)
{
STRCPY(p, (*file)[i]);
if (dir)
- STRCAT(p, "/"); /* add '/' to a directory name */
+ add_pathsep(p); /* add '/' to a directory name */
(*file)[j++] = p;
}
}
diff --git a/src/version.c b/src/version.c
index b89a0fad34..0c45c476b8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 194,
+/**/
193,
/**/
192,