From: Karl Heuer Date: Thu, 8 Jun 1995 20:13:45 +0000 (+0000) Subject: [MSDOS]: #undef chdir. X-Git-Tag: emacs-19.34~3725 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2d1985a2e195b16945c304863d1c452099561324;p=emacs.git [MSDOS]: #undef chdir. --- diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index e45fd75b3a1..6f3c799c937 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c @@ -56,6 +56,12 @@ int scan_file (); int scan_lisp_file (); int scan_c_file (); +#ifdef MSDOS +/* s/msdos.h defines this as sys_chdir, but we're not linking with the + file where that function is defined. */ +#undef chdir +#endif + /* Stdio stream for output to the DOC file. */ FILE *outfile;