From 420f628cf9b7d56a1073f4a02408bd869b37d946 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 1 Mar 2001 13:12:24 +0000 Subject: [PATCH] (x_set_foreground_color): Set the background of the cursor GC. --- src/ChangeLog | 3 +++ src/xfns.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index e81747972e6..02bca63433f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2001-03-01 Gerd Moellmann + * xfns.c (x_set_foreground_color): Set the background of the + cursor GC. + * xfns.c (x_set_font): Handle case of x_new_fontset returning the same name as before, although there was a change in fontsets. diff --git a/src/xfns.c b/src/xfns.c index 58a965d985f..1add97f6599 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -1350,6 +1350,8 @@ x_set_foreground_color (f, arg, oldval) f->output_data.x->foreground_pixel); XSetBackground (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc, f->output_data.x->foreground_pixel); + XSetBackground (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc, + f->output_data.x->foreground_pixel); UNBLOCK_INPUT; update_face_from_frame_parameter (f, Qforeground_color, arg); if (FRAME_VISIBLE_P (f)) -- 2.39.5