From: Dave Love Date: Thu, 10 Feb 2000 20:26:39 +0000 (+0000) Subject: (create_frame_xic): Fix initialization of automatic aggregates for pcc. X-Git-Tag: emacs-pretest-21.0.90~5054 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9d57cb2ce6085751f6a50afe5afddf5f3917ccd;p=emacs.git (create_frame_xic): Fix initialization of automatic aggregates for pcc. --- diff --git a/src/xfns.c b/src/xfns.c index a36b3a9986c..7d0459e924e 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -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)