diff options
| -rw-r--r-- | src/xfns.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/xfns.c b/src/xfns.c index f3f14ca236e..4be3d1df664 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -2942,14 +2942,10 @@ x_make_gc (f) | |||
| 2942 | gc_values.foreground = FRAME_BACKGROUND_PIXEL (f); | 2942 | gc_values.foreground = FRAME_BACKGROUND_PIXEL (f); |
| 2943 | gc_values.background = f->output_data.x->cursor_pixel; | 2943 | gc_values.background = f->output_data.x->cursor_pixel; |
| 2944 | gc_values.fill_style = FillOpaqueStippled; | 2944 | gc_values.fill_style = FillOpaqueStippled; |
| 2945 | gc_values.stipple | ||
| 2946 | = XCreateBitmapFromData (FRAME_X_DISPLAY (f), | ||
| 2947 | FRAME_X_DISPLAY_INFO (f)->root_window, | ||
| 2948 | cursor_bits, 16, 16); | ||
| 2949 | f->output_data.x->cursor_gc | 2945 | f->output_data.x->cursor_gc |
| 2950 | = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), | 2946 | = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), |
| 2951 | (GCForeground | GCBackground | 2947 | (GCForeground | GCBackground |
| 2952 | | GCFillStyle /* | GCStipple */ | GCLineWidth), | 2948 | | GCFillStyle | GCLineWidth), |
| 2953 | &gc_values); | 2949 | &gc_values); |
| 2954 | 2950 | ||
| 2955 | /* Reliefs. */ | 2951 | /* Reliefs. */ |