diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-07-25 21:55:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-07-25 21:55:50 +0000 |
commit | 7556890b5807e62450c0b6e7e603362c9a4f659e (patch) | |
tree | e7bcee12f4659fb428b27c0c76ccf40571217e24 /src/frame.c | |
parent | f39d16924d2e946dd604c819b04d3df6910f8432 (diff) | |
download | emacs-7556890b5807e62450c0b6e7e603362c9a4f659e.tar.gz |
Renamings: frame->display => frame->output, struct x_display -> sruct x_output.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 6 |
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. */ |