diff options
| author | Jim Blandy | 1993-07-30 23:12:25 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-07-30 23:12:25 +0000 |
| commit | 7b3de0eaf95386b61b252bf7a15533df90cc258f (patch) | |
| tree | d7fed9bd15a39b258cd82014fb73b74efe2617cd /src | |
| parent | f5ff08b04f132e199426aa57b90db3c73da3d519 (diff) | |
| download | emacs-7b3de0eaf95386b61b252bf7a15533df90cc258f.tar.gz emacs-7b3de0eaf95386b61b252bf7a15533df90cc258f.zip | |
* xfns.c (x_set_background_color): Change the foreground color of
the cursor, too.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index c394e882f48..6b9a90f484b 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -554,6 +554,8 @@ x_set_background_color (f, arg, oldval) | |||
| 554 | f->display.x->background_pixel); | 554 | f->display.x->background_pixel); |
| 555 | XSetForeground (x_current_display, f->display.x->reverse_gc, | 555 | XSetForeground (x_current_display, f->display.x->reverse_gc, |
| 556 | f->display.x->background_pixel); | 556 | f->display.x->background_pixel); |
| 557 | XSetForeground (x_current_display, f->display.x->cursor_gc, | ||
| 558 | f->display.x->background_pixel); | ||
| 557 | XSetWindowBackground (x_current_display, FRAME_X_WINDOW (f), | 559 | XSetWindowBackground (x_current_display, FRAME_X_WINDOW (f), |
| 558 | f->display.x->background_pixel); | 560 | f->display.x->background_pixel); |
| 559 | 561 | ||