From: Geoff Voelker Date: Mon, 20 Jan 1997 00:34:34 +0000 (+0000) Subject: Change all uses of win95, winnt, and win32 X-Git-Tag: emacs-20.1~3061 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e6b20d65417d75eb97e6168c8ef64e21c80a0636;p=emacs.git 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. --- diff --git a/src/w32console.c b/src/w32console.c index d80981b605a..24ae959f5ea 100644 --- a/src/w32console.c +++ b/src/w32console.c @@ -1,4 +1,4 @@ -/* Terminal hooks for Windows NT port of GNU Emacs. +/* Terminal hooks for GNU Emacs on the Microsoft W32 API. Copyright (C) 1992 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -492,7 +492,7 @@ set_terminal_modes (void) SetConsoleActiveScreenBuffer (cur_screen); - /* make cursor big and visible (100 on Win95 makes it disappear) */ + /* make cursor big and visible (100 on Windows 95 makes it disappear) */ cci.dwSize = 99; cci.bVisible = TRUE; (void) SetConsoleCursorInfo (cur_screen, &cci); @@ -539,7 +539,7 @@ reset_kbd (void) typedef int (*term_hook) (); void -initialize_win_nt_display (void) +initialize_w32_display (void) { CONSOLE_SCREEN_BUFFER_INFO info;