aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1997-01-20 00:34:34 +0000
committerGeoff Voelker1997-01-20 00:34:34 +0000
commite6b20d65417d75eb97e6168c8ef64e21c80a0636 (patch)
tree7e4ce91ec2706c2dfd8bf7dadd6bc2b1e303e9fb /src
parent274932335b9f351857ae8e9ec551a20c0b35267b (diff)
downloademacs-e6b20d65417d75eb97e6168c8ef64e21c80a0636.tar.gz
emacs-e6b20d65417d75eb97e6168c8ef64e21c80a0636.zip
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')
-rw-r--r--src/w32console.c6
1 files changed, 3 insertions, 3 deletions
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 @@
1/* Terminal hooks for Windows NT port of GNU Emacs. 1/* Terminal hooks for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1992 Free Software Foundation, Inc. 2 Copyright (C) 1992 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
@@ -492,7 +492,7 @@ set_terminal_modes (void)
492 492
493 SetConsoleActiveScreenBuffer (cur_screen); 493 SetConsoleActiveScreenBuffer (cur_screen);
494 494
495 /* make cursor big and visible (100 on Win95 makes it disappear) */ 495 /* make cursor big and visible (100 on Windows 95 makes it disappear) */
496 cci.dwSize = 99; 496 cci.dwSize = 99;
497 cci.bVisible = TRUE; 497 cci.bVisible = TRUE;
498 (void) SetConsoleCursorInfo (cur_screen, &cci); 498 (void) SetConsoleCursorInfo (cur_screen, &cci);
@@ -539,7 +539,7 @@ reset_kbd (void)
539typedef int (*term_hook) (); 539typedef int (*term_hook) ();
540 540
541void 541void
542initialize_win_nt_display (void) 542initialize_w32_display (void)
543{ 543{
544 CONSOLE_SCREEN_BUFFER_INFO info; 544 CONSOLE_SCREEN_BUFFER_INFO info;
545 545