# HG changeset patch # User Dave Love # Date 950214399 0 # Node ID 4137c807296b0676675f5b7517e43b2212f44e97 # Parent 5980f19581dc354ea872b010b50fc623f7e75881 (create_frame_xic): Fix initialization of automatic aggregates for pcc. diff -r 5980f19581dc -r 4137c807296b src/xfns.c --- a/src/xfns.c Thu Feb 10 20:00:05 2000 +0000 +++ b/src/xfns.c Thu Feb 10 20:26:39 2000 +0000 @@ -3134,13 +3134,15 @@ 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)