]> git.eshelyaron.com Git - emacs.git/commitdiff
* xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
authorJan Djärv <jan.h.d@swipnet.se>
Thu, 6 May 2010 09:34:56 +0000 (11:34 +0200)
committerJan Djärv <jan.h.d@swipnet.se>
Thu, 6 May 2010 09:34:56 +0000 (11:34 +0200)
src/ChangeLog
src/xterm.c

index cad37cd432b107ca0648357dd04d35e0c15c5e90..889c261f204b761c1aabceb30d85dd2a616e2a65 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-06  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
+
 2010-05-06  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (CPP, LN_S): Remove unused variables.
index ec550100cea502af9ba5880b16570ecdebc53790..f867632f22f74f55ea6d0eb6a5495043c94d70b1 100644 (file)
@@ -2291,7 +2291,7 @@ static void
 x_draw_image_relief (s)
      struct glyph_string *s;
 {
-  int x0, y0, x1, y1, thick, raised_p;
+  int x0, y0, x1, y1, thick, raised_p, extra;
   XRectangle r;
   int x = s->x;
   int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
@@ -2322,7 +2322,7 @@ x_draw_image_relief (s)
       raised_p = s->img->relief > 0;
     }
 
-  int extra = s->face->id == TOOL_BAR_FACE_ID
+  extra = s->face->id == TOOL_BAR_FACE_ID
     ? XINT (Vtool_bar_button_margin) : 0;
   
   x0 = x - thick - extra;