From: Glenn Morris Date: Thu, 9 Aug 2012 23:53:07 +0000 (-0400) Subject: * lib-src/ebrowse.c (PATH_LIST_SEPARATOR): Remove X-Git-Tag: emacs-24.2.90~752 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35656638797b4643e7d3ed942ded9fa43429cadc;p=emacs.git * lib-src/ebrowse.c (PATH_LIST_SEPARATOR): Remove Replace with SEPCHAR from config.h. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 28232c1abc4..33022de1a29 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,8 @@ +2012-08-09 Glenn Morris + + * ebrowse.c (PATH_LIST_SEPARATOR): + Remove, and replace with SEPCHAR from config.h. + 2012-08-03 Juanma Barranquero * makefile.w32-in (LOCAL_FLAGS): Remove WINDOWSNT and DOS_NT, diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 1c43bc6a4f1..f8569fe3747 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -43,17 +43,12 @@ along with GNU Emacs. If not, see . */ #define READ_CHUNK_SIZE (100 * 1024) -/* The character used as a separator in path lists (like $PATH). */ - #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 @@ -3417,7 +3412,7 @@ add_search_path (char *path_list) char *start = path_list; struct search_path *p; - while (*path_list && *path_list != PATH_LIST_SEPARATOR) + while (*path_list && *path_list != SEPCHAR) ++path_list; p = (struct search_path *) xmalloc (sizeof *p); @@ -3434,7 +3429,7 @@ add_search_path (char *path_list) else search_path = search_path_tail = p; - while (*path_list == PATH_LIST_SEPARATOR) + while (*path_list == SEPCHAR) ++path_list; } }