changeset 12665:427a3d6560bf

(struct frame): Rename `display' member to `output_data'. Use new data type name for output_data.x.
author Richard M. Stallman <rms@gnu.org>
date Tue, 25 Jul 1995 21:14:46 +0000
parents ce1cae301efe
children 47630952226e
files src/frame.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.h	Tue Jul 25 21:13:10 1995 +0000
+++ b/src/frame.h	Tue Jul 25 21:14:46 1995 +0000
@@ -171,9 +171,9 @@
   enum output_method output_method;
 
   /* A structure of auxiliary data used for displaying the contents.
-     struct x_display is used for X window frames;
+     struct x_output is used for X window frames;
      it is defined in xterm.h.  */
-  union display { struct x_display *x; int nothing; } display;
+  union output_data { struct x_output *x; int nothing; } output_data;
 
 #ifdef MULTI_KBOARD
   /* A pointer to the kboard structure associated with this frame.
@@ -300,7 +300,7 @@
 
 #define WINDOW_FRAME(w) (w)->frame
 
-#define FRAME_LIVE_P(f) ((f)->display.nothing != 0)
+#define FRAME_LIVE_P(f) ((f)->output_data.nothing != 0)
 #define FRAME_TERMCAP_P(f) ((f)->output_method == output_termcap)
 #define FRAME_X_P(f) ((f)->output_method == output_x_window)
 #define FRAME_MINIBUF_ONLY_P(f) \