diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-04-26 19:53:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-04-26 19:53:04 +0000 |
commit | 41f339d465fd79966742d0306381680ef845b755 (patch) | |
tree | 1405a98315448a73dcfc7bed9fa9b76a43ce97f4 /src/emacs.c | |
parent | 93593876d9d4b862cc0207613014b77b76033f0e (diff) | |
download | emacs-41f339d465fd79966742d0306381680ef845b755.tar.gz |
(main) [WINDOWSNT]: Invoke init_ntproc.
(shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 5 |
1 files changed, 5 insertions, 0 deletions
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 } |