From: Jim Meyering Date: Thu, 1 Mar 2001 05:33:18 +0000 (+0000) Subject: (jm_AC_DOS): Remove extra backslashes, now that X-Git-Tag: TEXTUTILS-2_0_12~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5cf8b603917763e9b40e49f77e8c17aad999c81;p=thirdparty%2Fcoreutils.git (jm_AC_DOS): Remove extra backslashes, now that AH_VERBATIM really does output its argument verbatim. --- diff --git a/m4/dos.m4 b/m4/dos.m4 index 0787e5c3f8..618c1f437e 100644 --- a/m4/dos.m4 +++ b/m4/dos.m4 @@ -1,4 +1,4 @@ -# serial 2 +# serial 3 # Define some macros required for proper operation of code in lib/*.c # on MSDOS/Windows systems. @@ -28,7 +28,7 @@ else AH_VERBATIM(ISSLASH, [#if FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR -# define ISSLASH(C) ((C) == '/' || (C) == '\\\\') +# define ISSLASH(C) ((C) == '/' || (C) == '\\') #else # define ISSLASH(C) ((C) == '/') #endif])