From 41f339d465fd79966742d0306381680ef845b755 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 26 Apr 1996 19:53:04 +0000 Subject: [PATCH] (main) [WINDOWSNT]: Invoke init_ntproc. (shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc. --- src/emacs.c | 5 +++++ 1 file changed, 5 insertions(+) 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 } -- 2.39.2