Make :find completion work better with the DJGPP build. (Nazri Ramliy)
diff --git a/src/misc1.c b/src/misc1.c
index 911ba4a..fd4e4fe 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -9374,7 +9374,7 @@
 	int j = 0;
 
 	while ((fname[j] == path_part[i][j]
-#if defined(WIN3264)
+# if defined(MSWIN) || defined(MSDOS)
 		|| (vim_ispathsep(fname[j]) && vim_ispathsep(path_part[i][j]))
 #endif
 			     ) && fname[j] != NUL && path_part[i][j] != NUL)
@@ -9389,7 +9389,7 @@
     /* Skip to the file or directory name */
     if (cutoff != NULL)
 	while (
-#if defined(WIN3264)
+# if defined(MSWIN) || defined(MSDOS)
 		*cutoff == '/'
 #else
 		vim_ispathsep(*cutoff)
@@ -9460,7 +9460,7 @@
 
 	len = (int)STRLEN(path);
 	while (dir_end > path &&
-#if defined(WIN3264)
+# if defined(MSWIN) || defined(MSDOS)
 		*dir_end != '/'
 #else
 		!vim_ispathsep(*dir_end)