diff options
Diffstat (limited to 'src/w32console.c')
| -rw-r--r-- | src/w32console.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/w32console.c b/src/w32console.c index a707344efc8..8da1ccf1892 100644 --- a/src/w32console.c +++ b/src/w32console.c | |||
| @@ -53,7 +53,6 @@ static void w32con_write_glyphs (struct frame *f, struct glyph *string, int len) | |||
| 53 | static void w32con_delete_glyphs (struct frame *f, int n); | 53 | static void w32con_delete_glyphs (struct frame *f, int n); |
| 54 | static void w32con_reset_terminal_modes (struct terminal *t); | 54 | static void w32con_reset_terminal_modes (struct terminal *t); |
| 55 | static void w32con_set_terminal_modes (struct terminal *t); | 55 | static void w32con_set_terminal_modes (struct terminal *t); |
| 56 | static void w32con_set_terminal_window (struct frame *f, int size); | ||
| 57 | static void w32con_update_begin (struct frame * f); | 56 | static void w32con_update_begin (struct frame * f); |
| 58 | static void w32con_update_end (struct frame * f); | 57 | static void w32con_update_end (struct frame * f); |
| 59 | static WORD w32_face_attributes (struct frame *f, int face_id); | 58 | static WORD w32_face_attributes (struct frame *f, int face_id); |
| @@ -497,11 +496,6 @@ w32con_update_end (struct frame * f) | |||
| 497 | SetConsoleCursorPosition (cur_screen, cursor_coords); | 496 | SetConsoleCursorPosition (cur_screen, cursor_coords); |
| 498 | } | 497 | } |
| 499 | 498 | ||
| 500 | static void | ||
| 501 | w32con_set_terminal_window (struct frame *f, int size) | ||
| 502 | { | ||
| 503 | } | ||
| 504 | |||
| 505 | /*********************************************************************** | 499 | /*********************************************************************** |
| 506 | stubs from termcap.c | 500 | stubs from termcap.c |
| 507 | ***********************************************************************/ | 501 | ***********************************************************************/ |
| @@ -619,7 +613,7 @@ initialize_w32_display (struct terminal *term, int *width, int *height) | |||
| 619 | term->ring_bell_hook = w32_sys_ring_bell; | 613 | term->ring_bell_hook = w32_sys_ring_bell; |
| 620 | term->reset_terminal_modes_hook = w32con_reset_terminal_modes; | 614 | term->reset_terminal_modes_hook = w32con_reset_terminal_modes; |
| 621 | term->set_terminal_modes_hook = w32con_set_terminal_modes; | 615 | term->set_terminal_modes_hook = w32con_set_terminal_modes; |
| 622 | term->set_terminal_window_hook = w32con_set_terminal_window; | 616 | term->set_terminal_window_hook = NULL; |
| 623 | term->update_begin_hook = w32con_update_begin; | 617 | term->update_begin_hook = w32con_update_begin; |
| 624 | term->update_end_hook = w32con_update_end; | 618 | term->update_end_hook = w32con_update_end; |
| 625 | 619 | ||