]> git.eshelyaron.com Git - emacs.git/commitdiff
(create_frame_xic): Fix initialization of automatic aggregates for pcc.
authorDave Love <fx@gnu.org>
Thu, 10 Feb 2000 20:26:39 +0000 (20:26 +0000)
committerDave Love <fx@gnu.org>
Thu, 10 Feb 2000 20:26:39 +0000 (20:26 +0000)
src/xfns.c

index a36b3a9986cc2e7368f1a2ffe0223c52611982a1..7d0459e924e98bb55f7a94f9fe82a8e26f71689f 100644 (file)
@@ -3134,13 +3134,15 @@ create_frame_xic (f)
   xim = FRAME_X_XIM (f);
   if (xim)
     {
-      XRectangle s_area = {0, 0, 1, 1};
-      XPoint spot = {0, 1};
+      XRectangle s_area;
+      XPoint spot;
       XVaNestedList preedit_attr;
       XVaNestedList status_attr;
       char *base_fontname;
       int fontset;
 
+      s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
+      spot.x = 0; spot.y = 1;
       /* Create X fontset. */
       fontset = FRAME_FONTSET (f);
       if (fontset < 0)