diff options
author | Joseph Arceneaux <jla@gnu.org> | 1992-10-14 22:51:35 +0000 |
---|---|---|
committer | Joseph Arceneaux <jla@gnu.org> | 1992-10-14 22:51:35 +0000 |
commit | 9d46c2e6bb7cb529c0a9faa9c0ebae1431889a38 (patch) | |
tree | bd524174615b2bb287408f036d24f1478e4e05cc /src/xterm.h | |
parent | 448fd7c056bc4b1a272174a3485e80f960800724 (diff) | |
download | emacs-9d46c2e6bb7cb529c0a9faa9c0ebae1431889a38.tar.gz |
* xterm.h: Declaration of struct face removed.
Diffstat (limited to 'src/xterm.h')
-rw-r--r-- | src/xterm.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/xterm.h b/src/xterm.h index fdaec698838..c13625a9ec5 100644 --- a/src/xterm.h +++ b/src/xterm.h @@ -102,9 +102,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define FONT_HEIGHT(f) ((f)->ascent + (f)->descent) #define FONT_BASE(f) ((f)->ascent) -/* GC values used for drawing non-standard (other face) text. */ -extern XGCValues face_gc_values; - /* The mask of events that text windows always want to receive. This does not include mouse movement events. It is used when the window is created (in x_window) and when we ask/unask for mouse movement @@ -368,20 +365,8 @@ struct x_display fixed width, and to have the same height and width. */ #ifdef HAVE_X11 -/* Table of GC's used for this frame. */ -GC *gc_table; - -/* How many GCs are in the table. */ -int gcs_in_use; -struct face -{ - GC face_gc; - unsigned int foreground; - unsigned int background; - Pixmap stipple; - XFontStruct *font; -}; +/* Face declared in dispextern.h */ #else /* X10 */ |