comparison src/xfaces.c @ 47983:af143d9ed38e

Remove definition of XColor.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 23 Oct 2002 16:55:19 +0000
parents a7c8409f5cad
children acfaa904eb56
comparison
equal deleted inserted replaced
47982:cd58bd276a86 47983:af143d9ed38e
294 294
295 /* Size of hash table of realized faces in face caches (should be a 295 /* Size of hash table of realized faces in face caches (should be a
296 prime number). */ 296 prime number). */
297 297
298 #define FACE_CACHE_BUCKETS_SIZE 1001 298 #define FACE_CACHE_BUCKETS_SIZE 1001
299
300 /* A definition of XColor for non-X frames. */
301
302 #ifndef HAVE_X_WINDOWS
303
304 typedef struct
305 {
306 unsigned long pixel;
307 unsigned short red, green, blue;
308 char flags;
309 char pad;
310 }
311 XColor;
312
313 #endif /* not HAVE_X_WINDOWS */
314 299
315 /* Keyword symbols used for face attribute names. */ 300 /* Keyword symbols used for face attribute names. */
316 301
317 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline; 302 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline;
318 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple; 303 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple;