]> git.eshelyaron.com Git - emacs.git/commitdiff
(main) [WINDOWSNT]: Invoke init_ntproc.
authorRichard M. Stallman <rms@gnu.org>
Fri, 26 Apr 1996 19:53:04 +0000 (19:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 26 Apr 1996 19:53:04 +0000 (19:53 +0000)
(shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc.

src/emacs.c

index 5a603e3d1392d4fab62b2885f3b935981e16cd2b..e9f8439393d0ade08262b0f5fd5deed7d08ec4d0 100644 (file)
@@ -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
 }