aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-07-20 09:53:57 +0000
committerGerd Moellmann2001-07-20 09:53:57 +0000
commit831fefca49a5b1ab3d2ec5863ec157be8ff5d28b (patch)
tree53dfd1920035e2df91315a64eef876f722c1f598
parent661aa5c75ce7897653f8b662599452e7f746836a (diff)
downloademacs-831fefca49a5b1ab3d2ec5863ec157be8ff5d28b.tar.gz
emacs-831fefca49a5b1ab3d2ec5863ec157be8ff5d28b.zip
(struct face): Change type of `stipple' to
int; it's an ID.
-rw-r--r--src/dispextern.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index c2d6d1ea725..7d95f5564e2 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1201,8 +1201,9 @@ struct face
1201 font may still be used somewhere else. */ 1201 font may still be used somewhere else. */
1202 XFontStruct *font; 1202 XFontStruct *font;
1203 1203
1204 /* Background stipple or bitmap used for this face. */ 1204 /* Background stipple or bitmap used for this face. This is
1205 Pixmap stipple; 1205 an id as returned from load_pixmap. */
1206 int stipple;
1206 1207
1207#else /* not HAVE_WINDOW_SYSTEM */ 1208#else /* not HAVE_WINDOW_SYSTEM */
1208 1209