emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114096: * msdos.c (IT_set_terminal_window): Remove


From: Dmitry Antipov
Subject: [Emacs-diffs] trunk r114096: * msdos.c (IT_set_terminal_window): Remove no-op.
Date: Mon, 02 Sep 2013 03:39:41 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114096
revision-id: address@hidden
parent: address@hidden
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Mon 2013-09-02 07:39:06 +0400
message:
  * 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.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/msdos.c                    msdos.c-20091113204419-o5vbwnq5f7feedwu-656
  src/w32console.c               
w32console.c-20091113204419-o5vbwnq5f7feedwu-812
  src/w32term.c                  w32term.c-20091113204419-o5vbwnq5f7feedwu-950
  src/xterm.c                    xterm.c-20091113204419-o5vbwnq5f7feedwu-244
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-09-01 16:39:20 +0000
+++ b/src/ChangeLog     2013-09-02 03:39:06 +0000
@@ -1,3 +1,14 @@
+2013-09-02  Dmitry Antipov  <address@hidden>
+
+       * 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.
+
 2013-09-01  Dmitry Antipov  <address@hidden>
 
        * nsterm.m (ns_set_terminal_modes, ns_reset_terminal_modes):

=== modified file 'src/msdos.c'
--- a/src/msdos.c       2013-08-27 18:47:55 +0000
+++ b/src/msdos.c       2013-09-02 03:39:06 +0000
@@ -1546,11 +1546,6 @@
   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 @@
   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;

=== modified file 'src/w32console.c'
--- a/src/w32console.c  2013-08-27 03:52:21 +0000
+++ b/src/w32console.c  2013-09-02 03:39:06 +0000
@@ -53,7 +53,6 @@
 static void w32con_delete_glyphs (struct frame *f, int n);
 static void w32con_reset_terminal_modes (struct terminal *t);
 static void w32con_set_terminal_modes (struct terminal *t);
-static void w32con_set_terminal_window (struct frame *f, int size);
 static void w32con_update_begin (struct frame * f);
 static void w32con_update_end (struct frame * f);
 static WORD w32_face_attributes (struct frame *f, int face_id);
@@ -497,11 +496,6 @@
   SetConsoleCursorPosition (cur_screen, cursor_coords);
 }
 
-static void
-w32con_set_terminal_window (struct frame *f, int size)
-{
-}
-
 /***********************************************************************
                        stubs from termcap.c
  ***********************************************************************/
@@ -619,7 +613,7 @@
   term->ring_bell_hook         = w32_sys_ring_bell;
   term->reset_terminal_modes_hook = w32con_reset_terminal_modes;
   term->set_terminal_modes_hook        = w32con_set_terminal_modes;
-  term->set_terminal_window_hook = w32con_set_terminal_window;
+  term->set_terminal_window_hook = NULL;
   term->update_begin_hook      = w32con_update_begin;
   term->update_end_hook                = w32con_update_end;
 

=== modified file 'src/w32term.c'
--- a/src/w32term.c     2013-09-01 16:39:20 +0000
+++ b/src/w32term.c     2013-09-02 03:39:06 +0000
@@ -2665,19 +2665,6 @@
   unblock_input ();
 }
 
-
-/* Specify how many text lines, from the top of the window,
-   should be affected by insert-lines and delete-lines operations.
-   This, and those operations, are used only within an update
-   that is bounded by calls to x_update_begin and x_update_end.  */
-
-static void
-w32_set_terminal_window (struct frame *f, int n)
-{
-  /* This function intentionally left blank.  */
-}
-
-
 /***********************************************************************
                              Line Dance
  ***********************************************************************/
@@ -6334,7 +6321,7 @@
   terminal->set_terminal_modes_hook = NULL;
   terminal->update_begin_hook = x_update_begin;
   terminal->update_end_hook = x_update_end;
-  terminal->set_terminal_window_hook = w32_set_terminal_window;
+  terminal->set_terminal_window_hook = NULL;
   terminal->read_socket_hook = w32_read_socket;
   terminal->frame_up_to_date_hook = w32_frame_up_to_date;
   terminal->mouse_position_hook = w32_mouse_position;

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2013-09-01 16:39:20 +0000
+++ b/src/xterm.c       2013-09-02 03:39:06 +0000
@@ -3186,20 +3186,6 @@
     }
 }
 
-
-/* Specify how many text lines, from the top of the window,
-   should be affected by insert-lines and delete-lines operations.
-   This, and those operations, are used only within an update
-   that is bounded by calls to x_update_begin and x_update_end.  */
-
-static void
-XTset_terminal_window (struct frame *f, int n)
-{
-  /* This function intentionally left blank.  */
-}
-
-
-
 /***********************************************************************
                              Line Dance
  ***********************************************************************/
@@ -10527,7 +10513,7 @@
   terminal->set_terminal_modes_hook = NULL;
   terminal->update_begin_hook = x_update_begin;
   terminal->update_end_hook = x_update_end;
-  terminal->set_terminal_window_hook = XTset_terminal_window;
+  terminal->set_terminal_window_hook = NULL;
   terminal->read_socket_hook = XTread_socket;
   terminal->frame_up_to_date_hook = XTframe_up_to_date;
   terminal->mouse_position_hook = XTmouse_position;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]