Mercurial > emacs
changeset 15089:3305f0390624
(main) [WINDOWSNT]: Invoke init_ntproc.
(shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Apr 1996 19:53:04 +0000 |
parents | 488fa3e85f56 |
children | c07a2c3e141d |
files | src/emacs.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/emacs.c Fri Apr 26 19:52:51 1996 +0000 +++ b/src/emacs.c Fri Apr 26 19:53:04 1996 +0000 @@ -796,6 +796,7 @@ #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 @@ unrequest_sigio (); signal (SIGIO, SIG_IGN); #endif + +#ifdef WINDOWSNT + term_ntproc (); +#endif }