summaryrefslogtreecommitdiff
path: root/src/dispnew.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-07-25 21:55:50 +0000
committerRichard M. Stallman <rms@gnu.org>1995-07-25 21:55:50 +0000
commit2d0dc9f127cb98bf5d5e261159ea01b132a7077a (patch)
treeeb93ec17104afe8c06ea33c56b674bf0ff0b1f4d /src/dispnew.c
parentb429a3e23d2fa0be715a83a32713e537fc556d51 (diff)
downloademacs-2d0dc9f127cb98bf5d5e261159ea01b132a7077a.tar.gz
Renamings: frame->display => frame->output, struct x_display -> sruct x_output.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r--src/dispnew.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 455d1585dd4..2b94929ea83 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -1261,12 +1261,12 @@ update_frame (f, force, inhibit_hairy_id)
#ifdef HAVE_X_WINDOWS
if (FRAME_X_P (f))
{
- leftmost = downto = f->display.x->internal_border_width;
+ leftmost = downto = f->output_data.x->internal_border_width;
if (desired_frame->enable[0])
{
current_frame->top_left_x[FRAME_HEIGHT (f) - 1] = leftmost;
current_frame->top_left_y[FRAME_HEIGHT (f) - 1]
- = PIXEL_HEIGHT (f) - f->display.x->internal_border_width
+ = PIXEL_HEIGHT (f) - f->output_data.x->internal_border_width
- current_frame->pix_height[FRAME_HEIGHT (f) - 1];
current_frame->top_left_x[0] = leftmost;
current_frame->top_left_y[0] = downto;
@@ -1627,9 +1627,9 @@ update_line (frame, vpos)
{
current_frame->pix_width[vpos]
= current_frame->used[vpos]
- * FONT_WIDTH (frame->display.x->font);
+ * FONT_WIDTH (frame->output_data.x->font);
current_frame->pix_height[vpos]
- = frame->display.x->line_height;
+ = frame->output_data.x->line_height;
}
#endif /* HAVE_X_WINDOWS */