aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2003-03-31 20:34:56 +0000
committerKim F. Storm2003-03-31 20:34:56 +0000
commitc900f2919218c1db645927ae398c9cfc3c1dd9a9 (patch)
treee2773407febc4facd4f3c895c68b825c47125e8a /src
parent88cd462dc6e6ed9441337f496f818b5fee5f5912 (diff)
downloademacs-c900f2919218c1db645927ae398c9cfc3c1dd9a9.tar.gz
emacs-c900f2919218c1db645927ae398c9cfc3c1dd9a9.zip
(EMACS_CLASS): Remove.
(struct mac_display_info): Add xrdb member. (struct mac_output): Add want_fullscreen member.
Diffstat (limited to 'src')
-rw-r--r--src/macterm.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/macterm.h b/src/macterm.h
index d1b991f5eef..ba6d725b94c 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -53,9 +53,6 @@ Boston, MA 02111-1307, USA. */
53#define init_process emacs_init_process 53#define init_process emacs_init_process
54#endif /* MAC_OSX */ 54#endif /* MAC_OSX */
55 55
56/* The class of this X application. */
57#define EMACS_CLASS "Emacs"
58
59#define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b)) 56#define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b))
60 57
61#define RED_FROM_ULONG(color) ((color) >> 16) 58#define RED_FROM_ULONG(color) ((color) >> 16)
@@ -128,6 +125,9 @@ struct mac_display_info
128 /* The cursor to use for vertical scroll bars. */ 125 /* The cursor to use for vertical scroll bars. */
129 Cursor vertical_scroll_bar_cursor; 126 Cursor vertical_scroll_bar_cursor;
130 127
128 /* Resource data base */
129 XrmDatabase xrdb;
130
131#if 0 131#if 0
132 /* color palette information. */ 132 /* color palette information. */
133 int has_palette; 133 int has_palette;
@@ -429,6 +429,9 @@ struct mac_output {
429 /* The background for which the above relief GCs were set up. 429 /* The background for which the above relief GCs were set up.
430 They are changed only when a different background is involved. */ 430 They are changed only when a different background is involved. */
431 unsigned long relief_background; 431 unsigned long relief_background;
432
433 /* See enum below */
434 int want_fullscreen;
432}; 435};
433 436
434typedef struct mac_output mac_output; 437typedef struct mac_output mac_output;