summaryrefslogtreecommitdiff
path: root/m4/dos.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-12-17 09:26:55 +0000
committerJim Meyering <jim@meyering.net>2000-12-17 09:26:55 +0000
commitdfada44550d00756b81b58e141d366f3c704b5dc (patch)
tree0a556288f83f9c31368b2937ab1cb2e03c35e071 /m4/dos.m4
parent5d4c822ef7ca5d4cd16dc99edda24812f4ec1fd4 (diff)
downloadcoreutils-dfada44550d00756b81b58e141d366f3c704b5dc.tar.xz
these macros take arguments
Diffstat (limited to 'm4/dos.m4')
-rw-r--r--m4/dos.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/dos.m4 b/m4/dos.m4
index 8ef27b228..61876e7fc 100644
--- a/m4/dos.m4
+++ b/m4/dos.m4
@@ -10,14 +10,14 @@ AC_DEFUN(jm_AC_DOS,
#if defined _WIN32 || defined __WIN32__ || defined __MSDOS__
ac_fspl_def="((Filename)[0] && (Filename)[1] == ':' ? 2 : 0)"
ac_fspl_def=0
- AC_DEFINE_UNQUOTED([FILESYSTEM_PREFIX_LEN], $ac_fspl_def,
+ AC_DEFINE_UNQUOTED([FILESYSTEM_PREFIX_LEN(Filename)], $ac_fspl_def,
[On systems for which file names may have a so-called `drive letter'
prefix, define this to compute the length of that prefix, including
the colon. Otherwise, define it to zero.])
ac_isslash_def="((C) == '/' || (C) == '\\')"
ac_isslash_def="((C) == '/')"
- AC_DEFINE_UNQUOTED([ISSLASH], $ac_isslash_def,
+ AC_DEFINE_UNQUOTED([ISSLASH(C)], $ac_isslash_def,
[Define to return nonzero for any character that may serve as
a file name component separator. On POSIX systems, it is the
slash character. Some other systems also accept backslash.])