Mercurial > emacs
diff src/widget.c @ 12672:63201a2c1247
Do renamings:
frame->display => frame->output, struct x_display -> struct x_output.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Wed, 26 Jul 1995 00:04:12 +0000 |
| parents | f6386ce0011c |
| children | 621a575db6f7 |
line wrap: on
line diff
--- a/src/widget.c Wed Jul 26 00:02:03 1995 +0000 +++ b/src/widget.c Wed Jul 26 00:04:12 1995 +0000 @@ -630,7 +630,7 @@ update_various_frame_slots (ew) EmacsFrame ew; { - struct x_display* x = ew->emacs_frame.frame->output_data.x; + struct x_output *x = ew->emacs_frame.frame->output_data.x; x->pixel_height = ew->core.height; x->pixel_width = ew->core.width; x->internal_border_width = ew->emacs_frame.internal_border_width; @@ -641,7 +641,7 @@ update_from_various_frame_slots (ew) EmacsFrame ew; { - struct x_display* x = ew->emacs_frame.frame->output_data.x; + struct x_output *x = ew->emacs_frame.frame->output_data.x; ew->core.height = x->pixel_height; ew->core.width = x->pixel_width; ew->core.background_pixel = x->background_pixel;
