aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-04-26 19:53:04 +0000
committerRichard M. Stallman1996-04-26 19:53:04 +0000
commit41f339d465fd79966742d0306381680ef845b755 (patch)
tree1405a98315448a73dcfc7bed9fa9b76a43ce97f4 /src
parent93593876d9d4b862cc0207613014b77b76033f0e (diff)
downloademacs-41f339d465fd79966742d0306381680ef845b755.tar.gz
emacs-41f339d465fd79966742d0306381680ef845b755.zip
(main) [WINDOWSNT]: Invoke init_ntproc.
(shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c5
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\
796#ifdef WINDOWSNT 796#ifdef WINDOWSNT
797 /* Initialize environment from registry settings. */ 797 /* Initialize environment from registry settings. */
798 init_environment (); 798 init_environment ();
799 init_ntproc (); /* must precede init_editfns */
799#endif 800#endif
800 801
801 /* egetenv is a pretty low-level facility, which may get called in 802 /* egetenv is a pretty low-level facility, which may get called in
@@ -1313,6 +1314,10 @@ shut_down_emacs (sig, no_x, stuff)
1313 unrequest_sigio (); 1314 unrequest_sigio ();
1314 signal (SIGIO, SIG_IGN); 1315 signal (SIGIO, SIG_IGN);
1315#endif 1316#endif
1317
1318#ifdef WINDOWSNT
1319 term_ntproc ();
1320#endif
1316} 1321}
1317 1322
1318 1323