summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2014-02-08 16:01:10 -0500
committerPaul Smith <psmith@gnu.org>2014-02-08 16:01:10 -0500
commit2a64626a99421265afc25a761f0cb5e735420310 (patch)
treed6430fe1ccffe3e5b5c1a9797bbf6b1ddb669edc /main.c
parent3fed83de51e9ac827a2c77105e746641f32238d0 (diff)
downloadmake-2a64626a99421265afc25a761f0cb5e735420310.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 27d3a6eb..3a3d0166 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)