Mercurial > emacs
changeset 15407:b02e671551dc
(etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Jun 1996 21:13:14 +0000 |
parents | 7c205bc80624 |
children | 74032d1d3223 |
files | lib-src/etags.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/etags.c Tue Jun 11 19:50:32 1996 +0000 +++ b/lib-src/etags.c Tue Jun 11 21:13:14 1996 +0000 @@ -4305,7 +4305,7 @@ char * etags_getcwd () { -#ifdef DOS_NT +#ifdef MSDOS char *p, path[MAXPATHLEN + 1]; /* Fixed size is safe on MSDOS. */ getwd (path); @@ -4316,7 +4316,7 @@ *p = lowcase (*p); return strdup (path); -#else /* not DOS_NT */ +#else /* not MSDOS */ #if HAVE_GETCWD int bufsize = 200; char *path = xnew (bufsize, char); @@ -4330,7 +4330,7 @@ } return path; -#else /* not DOS_NT and not HAVE_GETCWD */ +#else /* not MSDOS and not HAVE_GETCWD */ struct linebuffer path; FILE *pipe; @@ -4342,7 +4342,7 @@ return path.buffer; #endif /* not HAVE_GETCWD */ -#endif /* not DOS_NT */ +#endif /* not MSDOS */ } /* Return a newly allocated string containing the filename