]> git.eshelyaron.com Git - emacs.git/commitdiff
* xterm.c (x_iconify_frame, x_free_frame_resources): Don't declare locals
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 9 Mar 2011 07:11:42 +0000 (23:11 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 9 Mar 2011 07:11:42 +0000 (23:11 -0800)
unless they are used.

src/ChangeLog
src/xterm.c

index 7f9e68e71e5d0b29c57b61d91011497fa51dba10..0a14f36dbe745ea808a90bb8b67ac98cf097478b 100644 (file)
@@ -8,6 +8,8 @@
        (x_calc_absolute_position): Now static.
        (XTread_socket): Don't define label "out" unless it's used.
        Don't declare local "event" unless it's used.
+       (x_iconify_frame, x_free_frame_resources): Don't declare locals
+       unless they are used.
 
        * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
        or move locals to avoid shadowing.
index f253ed0aa3f95c47d97373122db2a7901ff02577..9220d84815c878fb67506fddca99718a29083c94 100644 (file)
@@ -9166,7 +9166,9 @@ x_make_frame_invisible (struct frame *f)
 void
 x_iconify_frame (struct frame *f)
 {
+#ifdef USE_X_TOOLKIT
   int result;
+#endif
   Lisp_Object type;
 
   /* Don't keep the highlight on an invisible frame.  */
@@ -9293,9 +9295,11 @@ void
 x_free_frame_resources (struct frame *f)
 {
   struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
+  Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
+#ifdef USE_X_TOOLKIT
   Lisp_Object bar;
   struct scroll_bar *b;
-  Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
+#endif
 
   BLOCK_INPUT;