]> git.eshelyaron.com Git - emacs.git/commitdiff
Pacify --enable-gcc-warnings
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 8 Mar 2016 15:34:42 +0000 (07:34 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 8 Mar 2016 15:35:17 +0000 (07:35 -0800)
* src/xfns.c (x_create_tip_frame): Omit unused local.
(Fx_show_tip): Don’t jump over auto initialization.

src/xfns.c

index c1ce1b73a2146e72ba89f33bcd92cacf668da4b0..596b67c1608e6daeb83246062368c67941f2c11a 100644 (file)
@@ -5354,7 +5354,6 @@ x_create_tip_frame (struct x_display_info *dpyinfo, Lisp_Object parms)
   int width, height;
   ptrdiff_t count = SPECPDL_INDEX ();
   bool face_change_before = face_change;
-  Lisp_Object buffer;
   int x_width = 0, x_height = 0;
 
   if (!dpyinfo->terminal->name)
@@ -5873,6 +5872,7 @@ Text larger than the specified size is clipped.  */)
   ptrdiff_t count = SPECPDL_INDEX ();
   ptrdiff_t count_1;
   Lisp_Object window, size;
+  AUTO_STRING (tip, " *tip*");
 
   specbind (Qinhibit_redisplay, Qt);
 
@@ -6036,7 +6036,6 @@ Text larger than the specified size is clipped.  */)
 
   tip_f = XFRAME (tip_frame);
   window = FRAME_ROOT_WINDOW (tip_f);
-  AUTO_STRING (tip, " *tip*");
   set_window_buffer (window, Fget_buffer_create (tip), false, false);
   w = XWINDOW (window);
   w->pseudo_window_p = true;