From: Richard M. Stallman Date: Wed, 10 Jun 1998 20:57:59 +0000 (+0000) Subject: (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows. X-Git-Tag: emacs-20.3~651 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e454bf23e17b1a85a0b5abcdddc5d6162781b0a;p=emacs.git (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows. --- diff --git a/lib-src/etags.c b/lib-src/etags.c index 629ee48c2fb..22e6d35ae10 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4644,7 +4644,7 @@ concat (s1, s2, s3) char * etags_getcwd () { -#ifdef HAVE_GETCWD +#if defined (HAVE_GETCWD) || defined (WINDOWSNT) int bufsize = 200; char *path = xnew (bufsize, char);