]> git.eshelyaron.com Git - emacs.git/commitdiff
[WINDOWS-NT]: Use stricmp rather than strcasecmp to compare filenames.
authorJason Rumney <jasonr@gnu.org>
Sun, 11 Jun 2000 20:35:07 +0000 (20:35 +0000)
committerJason Rumney <jasonr@gnu.org>
Sun, 11 Jun 2000 20:35:07 +0000 (20:35 +0000)
lib-src/ebrowse.c

index c9b43175d9e9f7a672b64cfe7fdc13f8a1520005..6051199da86fcac91afa5b2149de2331dbdb13ce 100644 (file)
 
 /* The character used as a separator in path lists (like $PATH).  */
 
-#if defined(__MSDOS__) || defined(WINDOWSNT)
+#if defined(__MSDOS__)
 #define PATH_LIST_SEPARATOR ';'
 #define FILENAME_EQ(X,Y)    (strcasecmp(X,Y) == 0)
 #else
+#if defined(WINDOWSNT)
+#define PATH_LIST_SEPARATOR ';'
+#define FILENAME_EQ(X,Y)    (stricmp(X,Y) == 0)
+#else
 #define PATH_LIST_SEPARATOR ':'
 #define FILENAME_EQ(X,Y)    (streq(X,Y))
 #endif
-
+#endif
 /* The default output file name.  */
 
 #define DEFAULT_OUTFILE "BROWSE"