# HG changeset patch # User Kim F. Storm # Date 1049142896 0 # Node ID 1d4bd00d1ec89af7268d06f67669e05d02f84396 # Parent 0cebe62850bc9108f52bec03934e4c1060d6a1ba (EMACS_CLASS): Remove. (struct mac_display_info): Add xrdb member. (struct mac_output): Add want_fullscreen member. diff -r 0cebe62850bc -r 1d4bd00d1ec8 src/macterm.h --- a/src/macterm.h Mon Mar 31 20:34:48 2003 +0000 +++ b/src/macterm.h Mon Mar 31 20:34:56 2003 +0000 @@ -53,9 +53,6 @@ #define init_process emacs_init_process #endif /* MAC_OSX */ -/* The class of this X application. */ -#define EMACS_CLASS "Emacs" - #define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b)) #define RED_FROM_ULONG(color) ((color) >> 16) @@ -128,6 +125,9 @@ /* The cursor to use for vertical scroll bars. */ Cursor vertical_scroll_bar_cursor; + /* Resource data base */ + XrmDatabase xrdb; + #if 0 /* color palette information. */ int has_palette; @@ -429,6 +429,9 @@ /* The background for which the above relief GCs were set up. They are changed only when a different background is involved. */ unsigned long relief_background; + + /* See enum below */ + int want_fullscreen; }; typedef struct mac_output mac_output;