aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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