diff options
| author | Richard M. Stallman | 1998-06-10 20:57:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-06-10 20:57:59 +0000 |
| commit | 2e454bf23e17b1a85a0b5abcdddc5d6162781b0a (patch) | |
| tree | 56062cd806be576163c7db63a47cef3140db4c32 /lib-src | |
| parent | 8f840b7535b1fc122a7a80fffaab4a3320ebb19b (diff) | |
| download | emacs-2e454bf23e17b1a85a0b5abcdddc5d6162781b0a.tar.gz emacs-2e454bf23e17b1a85a0b5abcdddc5d6162781b0a.zip | |
(etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 4644 | char * | 4644 | char * |
| 4645 | etags_getcwd () | 4645 | etags_getcwd () |
| 4646 | { | 4646 | { |
| 4647 | #ifdef HAVE_GETCWD | 4647 | #if defined (HAVE_GETCWD) || defined (WINDOWSNT) |
| 4648 | int bufsize = 200; | 4648 | int bufsize = 200; |
| 4649 | char *path = xnew (bufsize, char); | 4649 | char *path = xnew (bufsize, char); |
| 4650 | 4650 | ||