From 88ad5ea792b6ece9f187c47abcdbe97a9d51676c Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Mon, 18 Jul 2005 05:38:38 +0000 Subject: [PATCH] (x_set_cursor_color): Use XSetBackground and XSetForeground. --- src/macfns.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/macfns.c b/src/macfns.c index b9f7e2bed5f..4af1bc8101b 100644 --- a/src/macfns.c +++ b/src/macfns.c @@ -1570,9 +1570,10 @@ x_set_cursor_color (f, arg, oldval) { BLOCK_INPUT; /* Update frame's cursor_gc. */ - f->output_data.mac->cursor_gc->foreground = fore_pixel; - f->output_data.mac->cursor_gc->background = pixel; - + XSetBackground (FRAME_MAC_DISPLAY (f), + f->output_data.mac->cursor_gc, pixel); + XSetForeground (FRAME_MAC_DISPLAY (f), + f->output_data.mac->cursor_gc, fore_pixel); UNBLOCK_INPUT; if (FRAME_VISIBLE_P (f)) -- 2.39.2