]> git.eshelyaron.com Git - emacs.git/commitdiff
src/w32term.c,window.c,xdisp.c: Remove unused variables.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 30 Nov 2013 15:51:16 +0000 (16:51 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 30 Nov 2013 15:51:16 +0000 (16:51 +0100)
* w32term.c (w32_read_socket): Remove unused variable `buf'.

* window.c (Fset_window_configuration): Comment out unused variables.

* xdisp.c (Fwindow_text_pixel_size): Remove unused variables
`value' and `endp'.

src/ChangeLog
src/w32term.c
src/window.c
src/xdisp.c

index 794eb0f82c229523e4558c5cd589050c12526c14..2a24c4b1ba89bd8165cd7d765a568a280315b290 100644 (file)
@@ -1,3 +1,12 @@
+2013-11-30  Juanma Barranquero  <lekktu@gmail.com>
+
+       * xdisp.c (Fwindow_text_pixel_size): Remove unused variables
+       `value' and `endp'.
+
+       * window.c (Fset_window_configuration): Comment out unused variables.
+
+       * w32term.c (w32_read_socket): Remove unused variable `buf'.
+
 2013-11-30  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xdisp.c (redisplay_internal): unrequest_sigio => request_sigio.
index 38b297810b1035791fdc3ac33d983977d31f3bd4..70625452d09461f82dabe9a222b61e8a47858385 100644 (file)
@@ -4224,7 +4224,6 @@ w32_read_socket (struct terminal *terminal,
   struct frame *f;
   struct w32_display_info *dpyinfo = &one_w32_display_info;
   Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
-  static char buf[1];
 
   block_input ();
 
index e73c50fc3a1fd4f43b431f25233df414ded30d8f..bf914662df78034933eda952789d9a78a0f925bf 100644 (file)
@@ -4129,7 +4129,7 @@ resize_frame_windows (struct frame *f, int size, bool horflag, bool pixelwise)
                                   ? FRAME_COLUMN_WIDTH (f)
                                   : FRAME_LINE_HEIGHT (f));
     }
-  else    
+  else
     {
       new_size= (horflag
                 ? size
@@ -4657,7 +4657,7 @@ grow_mini_window (struct window *w, int delta, bool pixelwise)
            }
          else
            {
-             line_height = -XINT (height); 
+             line_height = -XINT (height);
              pixel_height = line_height * FRAME_LINE_HEIGHT (f);
            }
 
@@ -4687,7 +4687,7 @@ shrink_mini_window (struct window *w, bool pixelwise)
 
   eassert (MINI_WINDOW_P (w));
 
-  height = pixelwise ? w->pixel_height : w->total_lines; 
+  height = pixelwise ? w->pixel_height : w->total_lines;
   unit = pixelwise ? FRAME_LINE_HEIGHT (f) : 1;
   if (height > unit)
     {
@@ -6078,10 +6078,10 @@ the return value is nil.  Otherwise the value is t.  */)
         back.  We keep track of the prevailing height in these variables.  */
       int previous_frame_text_height = FRAME_TEXT_HEIGHT (f);
       int previous_frame_text_width =  FRAME_TEXT_WIDTH  (f);
-      int previous_frame_menu_bar_height = FRAME_MENU_BAR_HEIGHT (f);
-      int previous_frame_tool_bar_height = FRAME_TOOL_BAR_HEIGHT (f);
-      int previous_frame_lines = FRAME_LINES (f);
-      int previous_frame_cols =  FRAME_COLS  (f);
+      /* int previous_frame_menu_bar_height = FRAME_MENU_BAR_HEIGHT (f); */
+      /* int previous_frame_tool_bar_height = FRAME_TOOL_BAR_HEIGHT (f); */
+      /* int previous_frame_lines = FRAME_LINES (f); */
+      /* int previous_frame_cols =  FRAME_COLS  (f); */
       int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
       int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
 
@@ -6353,7 +6353,7 @@ the return value is nil.  Otherwise the value is t.  */)
       /* This `select_window' calls record_buffer which calls Fdelq which
         invokes QUIT, so we do it here at the end rather than earlier,
         to minimize the risk of interrupting the Fset_window_configuration
-        in an inconsistent state (e.g. before frame-focus redirection is 
+        in an inconsistent state (e.g. before frame-focus redirection is
         canceled).  */
       select_window (data->current_window, Qnil, 1);
       BVAR (XBUFFER (XWINDOW (selected_window)->contents),
index c7395db7d5e9a34cfde1af01c499f417d6213ac2..e45a99d29d727e42d580c5d7e3d47b90be373869 100644 (file)
@@ -9512,12 +9512,12 @@ include the height of any of these lines in the return value.  */)
    Lisp_Object mode_and_header_line)
 {
   struct window *w = decode_live_window (window);
-  Lisp_Object buf, value;
+  Lisp_Object buf;
   struct buffer *b;
   struct it it;
   struct buffer *old_buffer = NULL;
   ptrdiff_t start, end, pos;
-  struct text_pos startp, endp;
+  struct text_pos startp;
   void *itdata = NULL;
   int c, max_y = -1, x = 0, y = 0;