summaryrefslogtreecommitdiff
path: root/src/frame.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/frame.c
parentb429a3e23d2fa0be715a83a32713e537fc556d51 (diff)
downloademacs-2d0dc9f127cb98bf5d5e261159ea01b132a7077a.tar.gz
Renamings: frame->display => frame->output, struct x_display -> sruct x_output.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frame.c b/src/frame.c
index 3c1a61ec29e..97ce72f9753 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -158,7 +158,7 @@ make_frame (mini_p)
f->desired_glyphs = 0;
f->visible = 0;
f->async_visible = 0;
- f->display.nothing = 0;
+ f->output_data.nothing = 0;
f->iconified = 0;
f->async_iconified = 0;
f->wants_modeline = 1;
@@ -377,7 +377,7 @@ make_terminal_frame ()
f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
f->async_visible = 1; /* Don't let visible be cleared later. */
- f->display.nothing = 1; /* Nonzero means frame isn't deleted. */
+ f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */
return f;
}
@@ -1036,7 +1036,7 @@ but if the second optional argument FORCE is non-nil, you may do so.")
x_destroy_window (f);
#endif
- f->display.nothing = 0;
+ f->output_data.nothing = 0;
/* If we've deleted the last_nonminibuf_frame, then try to find
another one. */