diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-02 07:39:06 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-02 07:39:06 +0400 |
commit | 0c7f856e9f368a56404041ac1d2118f459f2679b (patch) | |
tree | acc125335bf21abe51eeef04ff432e2db3fa09cb /src/msdos.c | |
parent | e5c144d64de3f87d2f8d264960e24f65aeb67857 (diff) | |
download | emacs-0c7f856e9f368a56404041ac1d2118f459f2679b.tar.gz |
* msdos.c (IT_set_terminal_window): Remove no-op.
(initialize_msdos_display): Adjust terminal setup.
* w32console.c (w32con_set_terminal_window): Remove no-op.
(initialize_w32_display): Adjust terminal setup.
* w32term.c (w32_set_terminal_window): Remove no-op.
(w32_create_terminal): Adjust terminal setup.
* xterm.c (XTset_terminal_window): Remove no-op.
(x_create_terminal): Adjust terminal setup.
Diffstat (limited to 'src/msdos.c')
-rw-r--r-- | src/msdos.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/msdos.c b/src/msdos.c index 3c78efbc47b..025b685e26c 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -1546,11 +1546,6 @@ IT_reset_terminal_modes (struct terminal *term) term_setup_done = 0; } -static void -IT_set_terminal_window (struct frame *f, int foo) -{ -} - /* Remember the screen colors of the current frame, to serve as the default colors for newly-created frames. */ DEFUN ("msdos-remember-default-colors", Fmsdos_remember_default_colors, @@ -1871,7 +1866,7 @@ initialize_msdos_display (struct terminal *term) term->ring_bell_hook = IT_ring_bell; term->reset_terminal_modes_hook = IT_reset_terminal_modes; term->set_terminal_modes_hook = IT_set_terminal_modes; - term->set_terminal_window_hook = IT_set_terminal_window; + term->set_terminal_window_hook = NULL; term->update_begin_hook = IT_update_begin; term->update_end_hook = IT_update_end; term->frame_up_to_date_hook = IT_frame_up_to_date; |