summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2014-02-02 17:28:46 -0500
committerPaul Smith <psmith@gnu.org>2014-02-08 16:01:10 -0500
commit8411528fdd21e978076365df2f49e2b934becb84 (patch)
treed6430fe1ccffe3e5b5c1a9797bbf6b1ddb669edc /main.c
parentd2a3e9ca9c5842778fcb417bd2fae5c75c2f9a13 (diff)
downloadgunmake-8411528fdd21e978076365df2f49e2b934becb84.tar.gz
* Rename MAP_PATHSEP to MAP_DIRSEP.
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 27d3a6e..3a3d016 100644
--- a/main.c
+++ b/main.c
@@ -620,11 +620,11 @@ initialize_stopchar_map ()
stopchar_map[(int)'-'] = MAP_USERFUNC;
stopchar_map[(int)'_'] = MAP_USERFUNC;
- stopchar_map[(int)'/'] = MAP_PATHSEP;
+ stopchar_map[(int)'/'] = MAP_DIRSEP;
#if defined(VMS)
- stopchar_map[(int)']'] = MAP_PATHSEP;
+ stopchar_map[(int)']'] = MAP_DIRSEP;
#elif defined(HAVE_DOS_PATHS)
- stopchar_map[(int)'\\'] = MAP_PATHSEP;
+ stopchar_map[(int)'\\'] = MAP_DIRSEP;
#endif
for (i = 1; i <= UCHAR_MAX; ++i)