(x_set_font): Avoid C99 mid-block variable declaration.
authorJason Rumney <jasonr@gnu.org>
Mon, 6 Apr 2009 14:54:36 +0000 (14:54 +0000)
committerJason Rumney <jasonr@gnu.org>
Mon, 6 Apr 2009 14:54:36 +0000 (14:54 +0000)
src/ChangeLog
src/frame.c

index 7d0f307..a76c86f 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-06  Jason Rumney  <jasonr@gnu.org>
+
+       * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
+
 2009-04-06  Kenichi Handa  <handa@m17n.org>
 
        * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
index 1a11021..80a691e 100644 (file)
@@ -3367,9 +3367,8 @@ x_set_font (f, arg, oldval)
      struct frame *f;
      Lisp_Object arg, oldval;
 {
-  Lisp_Object frame;
+  Lisp_Object frame, font_object, lval;
   int fontset = -1;
-  Lisp_Object font_object;
 
   /* Set the frame parameter back to the old value because we may
      fail to use ARG as the new parameter value.  */
@@ -3427,7 +3426,7 @@ x_set_font (f, arg, oldval)
     return;
 
   
-  Lisp_Object lval = Fassq (Qfullscreen, f->param_alist);
+  lval = Fassq (Qfullscreen, f->param_alist);
   if (CONSP (lval)) lval = CDR (lval);
 
   x_new_font (f, font_object, fontset);