Mercurial > emacs
comparison src/xfns.c @ 27659:4137c807296b
(create_frame_xic): Fix initialization of automatic aggregates for pcc.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 10 Feb 2000 20:26:39 +0000 |
parents | 52e8cb1333f2 |
children | d00730392332 |
comparison
equal
deleted
inserted
replaced
27658:5980f19581dc | 27659:4137c807296b |
---|---|
3132 return; | 3132 return; |
3133 | 3133 |
3134 xim = FRAME_X_XIM (f); | 3134 xim = FRAME_X_XIM (f); |
3135 if (xim) | 3135 if (xim) |
3136 { | 3136 { |
3137 XRectangle s_area = {0, 0, 1, 1}; | 3137 XRectangle s_area; |
3138 XPoint spot = {0, 1}; | 3138 XPoint spot; |
3139 XVaNestedList preedit_attr; | 3139 XVaNestedList preedit_attr; |
3140 XVaNestedList status_attr; | 3140 XVaNestedList status_attr; |
3141 char *base_fontname; | 3141 char *base_fontname; |
3142 int fontset; | 3142 int fontset; |
3143 | 3143 |
3144 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1; | |
3145 spot.x = 0; spot.y = 1; | |
3144 /* Create X fontset. */ | 3146 /* Create X fontset. */ |
3145 fontset = FRAME_FONTSET (f); | 3147 fontset = FRAME_FONTSET (f); |
3146 if (fontset < 0) | 3148 if (fontset < 0) |
3147 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*"; | 3149 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*"; |
3148 else | 3150 else |