summaryrefslogtreecommitdiff
path: root/src/w32.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-12 18:19:40 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-12 18:19:40 +0000
commit6b5edcadd1be1ad2e693e3b130a7e1dad8fe9722 (patch)
tree942ab7ec5fdf05de416a3ec892aa50b65bb982a5 /src/w32.c
parentea973b1075ed49b2d45e2a7601a936370a5e4d23 (diff)
downloademacs-6b5edcadd1be1ad2e693e3b130a7e1dad8fe9722.tar.gz
Delete restrict_dos_process.
Diffstat (limited to 'src/w32.c')
-rw-r--r--src/w32.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/w32.c b/src/w32.c
index 9a552e9565c..4c621fc8fa4 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -2131,7 +2131,6 @@ term_ntproc ()
#endif
}
-extern BOOL restrict_dos_process;
extern BOOL dos_process_running;
void
@@ -2212,19 +2211,18 @@ init_ntproc ()
fdopen (2, "w");
}
- /* On Windows 95 only, restrict Emacs to running only one DOS program
- at a time (with any number of Win32 programs). This is to prevent
- the user from running into problems with DOS programs being run in
- the same VDM under Win95.
+ /* Restrict Emacs to running only one DOS program at a time (with any
+ number of Win32 programs). This is to prevent the user from
+ running into problems with DOS programs being run in the same VDM
+ under both Windows 95 and Windows NT.
Note that it is possible for Emacs to run DOS programs in separate
- VDMs under Win95, but unfortunately the pipe implementation then
+ VDMs, but unfortunately the pipe implementation on Windows 95 then
fails to report when the DOS process exits (which is supposed to
break the pipe). Until this bug is fixed, or we can devise a
work-around, we must try to avoid letting the user start more than
one DOS program if possible. */
- restrict_dos_process = (GetVersion () & 0x80000000);
dos_process_running = FALSE;
/* unfortunately, atexit depends on implementation of malloc */