From: Richard M. Stallman Date: Fri, 26 Apr 1996 19:53:04 +0000 (+0000) Subject: (main) [WINDOWSNT]: Invoke init_ntproc. X-Git-Tag: emacs-19.34~772 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=41f339d465fd79966742d0306381680ef845b755;p=emacs.git (main) [WINDOWSNT]: Invoke init_ntproc. (shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc. --- diff --git a/src/emacs.c b/src/emacs.c index 5a603e3d139..e9f8439393d 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -796,6 +796,7 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\ #ifdef WINDOWSNT /* Initialize environment from registry settings. */ init_environment (); + init_ntproc (); /* must precede init_editfns */ #endif /* egetenv is a pretty low-level facility, which may get called in @@ -1313,6 +1314,10 @@ shut_down_emacs (sig, no_x, stuff) unrequest_sigio (); signal (SIGIO, SIG_IGN); #endif + +#ifdef WINDOWSNT + term_ntproc (); +#endif }