diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32console.c | 6 |
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 | ||
| 4 | This file is part of GNU Emacs. | 4 | This 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) | |||
| 539 | typedef int (*term_hook) (); | 539 | typedef int (*term_hook) (); |
| 540 | 540 | ||
| 541 | void | 541 | void |
| 542 | initialize_win_nt_display (void) | 542 | initialize_w32_display (void) |
| 543 | { | 543 | { |
| 544 | CONSOLE_SCREEN_BUFFER_INFO info; | 544 | CONSOLE_SCREEN_BUFFER_INFO info; |
| 545 | 545 | ||