]> git.eshelyaron.com Git - emacs.git/commitdiff
(etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
authorRichard M. Stallman <rms@gnu.org>
Wed, 10 Jun 1998 20:57:59 +0000 (20:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 10 Jun 1998 20:57:59 +0000 (20:57 +0000)
lib-src/etags.c

index 629ee48c2fbacd6a467aa656d0f008d167916b13..22e6d35ae10378bd4af80c400df3914c0a2bb660 100644 (file)
@@ -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);