Mercurial > emacs
changeset 50361:1d4bd00d1ec8
(EMACS_CLASS): Remove.
(struct mac_display_info): Add xrdb member.
(struct mac_output): Add want_fullscreen member.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 31 Mar 2003 20:34:56 +0000 |
parents | 0cebe62850bc |
children | 6d942c1d5f2d |
files | src/macterm.h |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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;