comparison src/frame.c @ 12667:a3466dad7d6d

Renamings: frame->display => frame->output, struct x_display -> sruct x_output.
author Richard M. Stallman <rms@gnu.org>
date Tue, 25 Jul 1995 21:55:50 +0000
parents 071cf90b866a
children ed5de994fa90
comparison
equal deleted inserted replaced
12666:47630952226e 12667:a3466dad7d6d
156 f->cursor_y = 0; 156 f->cursor_y = 0;
157 f->current_glyphs = 0; 157 f->current_glyphs = 0;
158 f->desired_glyphs = 0; 158 f->desired_glyphs = 0;
159 f->visible = 0; 159 f->visible = 0;
160 f->async_visible = 0; 160 f->async_visible = 0;
161 f->display.nothing = 0; 161 f->output_data.nothing = 0;
162 f->iconified = 0; 162 f->iconified = 0;
163 f->async_iconified = 0; 163 f->async_iconified = 0;
164 f->wants_modeline = 1; 164 f->wants_modeline = 1;
165 f->auto_raise = 0; 165 f->auto_raise = 0;
166 f->auto_lower = 0; 166 f->auto_lower = 0;
375 f->name = build_string (name); 375 f->name = build_string (name);
376 } 376 }
377 377
378 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */ 378 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
379 f->async_visible = 1; /* Don't let visible be cleared later. */ 379 f->async_visible = 1; /* Don't let visible be cleared later. */
380 f->display.nothing = 1; /* Nonzero means frame isn't deleted. */ 380 f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */
381 return f; 381 return f;
382 } 382 }
383 383
384 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame, 384 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
385 1, 1, 0, "Create an additional terminal frame.\n\ 385 1, 1, 0, "Create an additional terminal frame.\n\
1034 #ifdef HAVE_X_WINDOWS 1034 #ifdef HAVE_X_WINDOWS
1035 if (FRAME_X_P (f)) 1035 if (FRAME_X_P (f))
1036 x_destroy_window (f); 1036 x_destroy_window (f);
1037 #endif 1037 #endif
1038 1038
1039 f->display.nothing = 0; 1039 f->output_data.nothing = 0;
1040 1040
1041 /* If we've deleted the last_nonminibuf_frame, then try to find 1041 /* If we've deleted the last_nonminibuf_frame, then try to find
1042 another one. */ 1042 another one. */
1043 if (f == last_nonminibuf_frame) 1043 if (f == last_nonminibuf_frame)
1044 { 1044 {