diff options
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c index c8836b7ca78..a214cd81031 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -11757,6 +11757,22 @@ x_free_frame_resources (struct frame *f) | |||
| 11757 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->horizontal_drag_cursor); | 11757 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->horizontal_drag_cursor); |
| 11758 | if (f->output_data.x->vertical_drag_cursor != 0) | 11758 | if (f->output_data.x->vertical_drag_cursor != 0) |
| 11759 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->vertical_drag_cursor); | 11759 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->vertical_drag_cursor); |
| 11760 | if (f->output_data.x->left_edge_cursor != 0) | ||
| 11761 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->left_edge_cursor); | ||
| 11762 | if (f->output_data.x->top_left_corner_cursor != 0) | ||
| 11763 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->top_left_corner_cursor); | ||
| 11764 | if (f->output_data.x->top_edge_cursor != 0) | ||
| 11765 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->top_edge_cursor); | ||
| 11766 | if (f->output_data.x->top_right_corner_cursor != 0) | ||
| 11767 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->top_right_corner_cursor); | ||
| 11768 | if (f->output_data.x->right_edge_cursor != 0) | ||
| 11769 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->right_edge_cursor); | ||
| 11770 | if (f->output_data.x->bottom_right_corner_cursor != 0) | ||
| 11771 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->bottom_right_corner_cursor); | ||
| 11772 | if (f->output_data.x->bottom_edge_cursor != 0) | ||
| 11773 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->bottom_edge_cursor); | ||
| 11774 | if (f->output_data.x->bottom_left_corner_cursor != 0) | ||
| 11775 | XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->bottom_left_corner_cursor); | ||
| 11760 | 11776 | ||
| 11761 | XFlush (FRAME_X_DISPLAY (f)); | 11777 | XFlush (FRAME_X_DISPLAY (f)); |
| 11762 | } | 11778 | } |