From: Eli Zaretskii Date: Mon, 13 Oct 1997 16:52:09 +0000 (+0000) Subject: (shut_down_emacs): Call `dos_cleanup'. X-Git-Tag: emacs-20.3~3036 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d546e57865803678326a3999b3e5b5665e033f82;p=emacs.git (shut_down_emacs): Call `dos_cleanup'. --- diff --git a/src/emacs.c b/src/emacs.c index bf3e46c71d8..5a2ac8504c8 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1482,6 +1482,10 @@ shut_down_emacs (sig, no_x, stuff) #ifdef WINDOWSNT term_ntproc (); #endif + +#ifdef MSDOS + dos_cleanup (); +#endif }