]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_set_frame_alpha): Move declarations before
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 21 May 2008 06:32:45 +0000 (06:32 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 21 May 2008 06:32:45 +0000 (06:32 +0000)
statements.

src/ChangeLog
src/xterm.c

index 24bd2eed4e4042a96b2bcf8c8161ac6a5ad015f9..fc6287cccb72bb3eed38b1a247f988d3698d7456 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-21  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * xterm.c (x_set_frame_alpha): Move declarations before
+       statements.
+
 2008-05-21  Seiji Zenitani  <zenitani@mac.com>
            Ryo Yoshitake  <ryo@shiftmode.net>
 
index a02c7b955c8507b88976690ff509e6a61c6322cd..d1aef1404195b2d941ed61edd41ab0e4d1476231 100644 (file)
@@ -467,13 +467,15 @@ x_set_frame_alpha (f)
   struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
   Display *dpy = FRAME_X_DISPLAY (f);
   Window win = FRAME_OUTER_WINDOW (f);
+  double alpha = 1.0;
+  double alpha_min = 1.0;
+  unsigned int opac;
+  
   if (FRAME_X_DISPLAY_INFO (f)->root_window != FRAME_X_OUTPUT (f)->parent_desc)
     /* Since the WM decoration lies under the FRAME_OUTER_WINDOW,
        we must treat the former instead of the latter. */
     win = FRAME_X_OUTPUT(f)->parent_desc;
 
-  double alpha = 1.0, alpha_min = 1.0;
-
   if (dpyinfo->x_highlight_frame == f)
     alpha = f->alpha[0];
   else
@@ -489,7 +491,7 @@ x_set_frame_alpha (f)
   else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
     alpha = alpha_min;
 
-  unsigned int opac = (unsigned int)(alpha * OPAQUE);
+  opac = (unsigned int)(alpha * OPAQUE);
 
   /* return unless necessary */
   {
@@ -508,9 +510,7 @@ x_set_frame_alpha (f)
          return;
        }
       else
-       {
-         XFree ((void *) data);
-       }
+       XFree ((void *) data);
   }
 
   XChangeProperty (dpy, win, XInternAtom (dpy, OPACITY, False),