summaryrefslogtreecommitdiff
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1997-01-20 00:38:22 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1997-01-20 00:38:22 +0000
commite9e23e2348ae0770e9ba24296f0f6d2e48d4ecf8 (patch)
treec45ecf7357cadfc97917225df56975bf4d3dbc81 /src/w32proc.c
parente6b20d65417d75eb97e6168c8ef64e21c80a0636 (diff)
downloademacs-e9e23e2348ae0770e9ba24296f0f6d2e48d4ecf8.tar.gz
Change all uses of win95, winnt, and win32
into Windows 95, Windows NT, and W32, respectively. Expand "win" substring in variables referring to Microsoft Windows constructs into "windows". Canonicalize header comments to use same terminology.
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index 755336299b4..fec9a9ddeee 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -1,4 +1,4 @@
-/* Process support for Windows NT port of GNU EMACS.
+/* Process support for GNU Emacs on the Microsoft W32 API.
Copyright (C) 1992, 1995 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -58,7 +58,7 @@ Lisp_Object Vw32_start_process_show_window;
/* Time to sleep before reading from a subprocess output pipe - this
avoids the inefficiency of frequently reading small amounts of data.
This is primarily necessary for handling DOS processes on Windows 95,
- but is useful for W32 processes on both Win95 and NT as well. */
+ but is useful for W32 processes on both Windows 95 and NT as well. */
Lisp_Object Vw32_pipe_read_delay;
/* Control conversion of upper case file names to lower case.
@@ -1112,7 +1112,7 @@ sys_kill (int pid, int sig)
/* Kill the process. On W32 this doesn't kill child processes
so it doesn't work very well for shells which is why it's not
used in every case. Also, don't try to terminate DOS processes
- (on Win95), because this will hang Emacs. */
+ (on Windows 95), because this will hang Emacs. */
if (!(cp && cp->is_dos_process)
&& !TerminateProcess (proc_hand, 0xff))
{