]> code.delx.au - gnu-emacs/commitdiff
* frame.h (struct frame): Convert external_tool_bar member to
authorDmitry Antipov <dmantipov@yandex.ru>
Mon, 12 Nov 2012 16:02:46 +0000 (20:02 +0400)
committerDmitry Antipov <dmantipov@yandex.ru>
Mon, 12 Nov 2012 16:02:46 +0000 (20:02 +0400)
1-bit unsigned bitfield.
* termhooks.h (struct terminal): Remove mouse_moved member since
all users are long dead.  Adjust comment on mouse_position_hook.

src/ChangeLog
src/frame.h
src/termhooks.h

index e35e307c4ee86e3f56242a1bd29389e8f1846cea..e8ac547ff2aabbbcd8af1951a3cd881e4de2ae2f 100644 (file)
@@ -1,3 +1,10 @@
+2012-11-12  Dmitry Antipov  <dmantipov@yandex.ru>
+
+       * frame.h (struct frame): Convert external_tool_bar member to
+       1-bit unsigned bitfield.
+       * termhooks.h (struct terminal): Remove mouse_moved member since
+       all users are long dead.  Adjust comment on mouse_position_hook.
+
 2012-11-12  Dmitry Antipov  <dmantipov@yandex.ru>
 
        Simplify by using FOR_EACH_FRAME here and there.
index 1dc3ebbaf137466eb2c86643ea8408b3efff3b77..35cbc44becca836f91f4f55245f548389c04f1f8 100644 (file)
@@ -237,7 +237,7 @@ struct frame
 
 #if defined (USE_GTK) || defined (HAVE_NS)
   /* Nonzero means using a tool bar that comes from the toolkit.  */
-  int external_tool_bar;
+  unsigned external_tool_bar : 1;
 #endif
 
   /* Margin at the top of the frame.  Used to display the tool-bar.  */
index 2d97fcdbc1e604e541cf647366b4afb19f4ee401..b35c927fc539ed13a5a24aec6b1a22882efb6985 100644 (file)
@@ -414,14 +414,6 @@ struct terminal
   int memory_below_frame;      /* Terminal remembers lines scrolled
                                    off bottom */
 
-#if 0  /* These are not used anywhere. */
-  /* EMACS_INT baud_rate; */   /* Output speed in baud */
-  int min_padding_speed;       /* Speed below which no padding necessary. */
-  int dont_calculate_costs;     /* Nonzero means don't bother computing
-                                   various cost tables; we won't use them. */
-#endif
-
-\f
   /* Window-based redisplay interface for this device (0 for tty
      devices). */
   struct redisplay_interface *rif;
@@ -469,10 +461,7 @@ struct terminal
      Otherwise, set *bar_window to Qnil, and *x and *y to the column and
      row of the character cell the mouse is over.
 
-     Set *time to the time the mouse was at the returned position.
-
-     This should clear mouse_moved until the next motion
-     event arrives.  */
+     Set *time to the time the mouse was at the returned position.  */
   void (*mouse_position_hook) (struct frame **f, int,
                                Lisp_Object *bar_window,
                                enum scroll_bar_part *part,
@@ -480,11 +469,6 @@ struct terminal
                                Lisp_Object *y,
                                Time *);
 
-  /* The window system handling code should set this if the mouse has
-     moved since the last call to the mouse_position_hook.  Calling that
-     hook should clear this.  */
-  int mouse_moved;
-
   /* When a frame's focus redirection is changed, this hook tells the
      window system code to re-decide where to put the highlight.  Under
      X, this means that Emacs lies about where the focus is.  */