diff options
| author | Dave Love | 2000-02-10 20:26:39 +0000 |
|---|---|---|
| committer | Dave Love | 2000-02-10 20:26:39 +0000 |
| commit | d9d57cb2ce6085751f6a50afe5afddf5f3917ccd (patch) | |
| tree | 516de0e5fed84edcf6e3309390ccb9bd34704c97 /src | |
| parent | 0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582 (diff) | |
| download | emacs-d9d57cb2ce6085751f6a50afe5afddf5f3917ccd.tar.gz emacs-d9d57cb2ce6085751f6a50afe5afddf5f3917ccd.zip | |
(create_frame_xic): Fix initialization of automatic aggregates for pcc.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 6 |
1 files changed, 4 insertions, 2 deletions
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) | |||
| 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) |