diff options
author | Adrian Robert <Adrian.B.Robert@gmail.com> | 2008-08-01 14:01:08 +0000 |
---|---|---|
committer | Adrian Robert <Adrian.B.Robert@gmail.com> | 2008-08-01 14:01:08 +0000 |
commit | 150349607cf648e78d34aa16ef1d43d774bc6044 (patch) | |
tree | 7d57cf5f3e5163c7ea3019b9527409df771efe42 /src/nsgui.h | |
parent | 27ec92c98304e2b61dc20a1db65972b0eb00d4cc (diff) | |
download | emacs-150349607cf648e78d34aa16ef1d43d774bc6044.tar.gz |
clear warnings and clean up NS port
Diffstat (limited to 'src/nsgui.h')
-rw-r--r-- | src/nsgui.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/nsgui.h b/src/nsgui.h index 54e336fdf3d..f8d3ae4a3a8 100644 --- a/src/nsgui.h +++ b/src/nsgui.h @@ -75,20 +75,16 @@ typedef unichar XChar2b; #define XCHAR2B_BYTE2(chp) \ ((*chp) & 0x00ff) -#define FACE_DEFAULT (~0) - /* XXX: xfaces requires these structures, but the question is are we forced to use them? */ typedef struct _XGCValues { + unsigned long foreground; + unsigned long background; #ifdef __OBJC__ - NSColor *foreground; - NSColor *background; struct ns_font *font; #else - void *foreground; - void *background; void *font; #endif } XGCValues; |