diff options
| author | Karoly Lorentey | 2006-04-01 16:37:26 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-04-01 16:37:26 +0000 |
| commit | 5bcee7efff25b675da6da4d6dd31c6bbc822b957 (patch) | |
| tree | b898b9ac65601355dc9f7cf018042bdb3591c1ac /src/xfns.c | |
| parent | ce593f6e6b85e58206264cad983c796ce8dd41a2 (diff) | |
| download | emacs-5bcee7efff25b675da6da4d6dd31c6bbc822b957.tar.gz emacs-5bcee7efff25b675da6da4d6dd31c6bbc822b957.zip | |
Fix previous commit.
* src/frame.c (make_terminal_frame): Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
* src/gtkutil.c (xg_create_frame_widgets): Ditto.
* src/macfns.c (x_set_mouse_color): Ditto.
* src/macfns.c (x_make_gc): Ditto.
* src/msdos.c (ScreenVisualBell): Ditto.
* src/msdos.c (internal_terminal_init): Ditto.
* src/w32term.c (x_free_frame_resources): Ditto.
* src/xfns.c (x_window): Ditto.
* src/xterm.c (x_scroll_bar_create): Ditto.
* src/xterm.c (x_scroll_bar_set_handle): Ditto.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-545
Diffstat (limited to 'src/xfns.c')
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c index c37f99722c5..43970439a1a 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -2680,7 +2680,7 @@ x_window (f) | |||
| 2680 | XSetWindowAttributes attributes; | 2680 | XSetWindowAttributes attributes; |
| 2681 | unsigned long attribute_mask; | 2681 | unsigned long attribute_mask; |
| 2682 | 2682 | ||
| 2683 | attributes.background_pixel = f->output_data.x->background_pixel; | 2683 | attributes.background_pixel = FRAME_BACKGROUND_PIXEL (f); |
| 2684 | attributes.border_pixel = f->output_data.x->border_pixel; | 2684 | attributes.border_pixel = f->output_data.x->border_pixel; |
| 2685 | attributes.bit_gravity = StaticGravity; | 2685 | attributes.bit_gravity = StaticGravity; |
| 2686 | attributes.backing_store = NotUseful; | 2686 | attributes.backing_store = NotUseful; |