]> git.eshelyaron.com Git - emacs.git/commitdiff
Change all uses of win95, winnt, and win32
authorGeoff Voelker <voelker@cs.washington.edu>
Mon, 20 Jan 1997 00:34:34 +0000 (00:34 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Mon, 20 Jan 1997 00:34:34 +0000 (00:34 +0000)
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.

src/w32console.c

index d80981b605a330bf1298adc81927b81b08aa6878..24ae959f5ea62bcec369fb1cd76faa0f7eeaead3 100644 (file)
@@ -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;