annotate src/bitmaps/cntrpmsk.xbm @ 30973:2f3dc355bcaf
(lface_equal_p): Compare strings differently.
(Qtty_color_alist, Vtty_defined_color_alist): New variables.
(realize_tty_face): Use them.
(syms_of_xfaces): Initialize new variables.
(map_tty_color): New function, extracted from realize_tty_face.
(map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
foreground or background color, store the new color name in the
realized face; previous code trying to do this had no effect.
(realize_tty_face): Use map_tty_color.
(Fclear_face_cache): Set face_change_count and ensure thorough
redisplay.
author |
Gerd Moellmann <gerd@gnu.org> |
date |
Sun, 20 Aug 2000 13:23:01 +0000 |
parents |
8f14d08e19f7 |
children |
|
rev |
line source |
25830
|
1 #define cntr_ptrmsk_width 16
|
|
2 #define cntr_ptrmsk_height 16
|
|
3 static unsigned char cntr_ptrmsk_bits[] = {
|
|
4 0xc0, 0x03, 0xc0, 0x03, 0xe0, 0x07, 0xe0, 0x07, 0xf0, 0x0f, 0xf0, 0x0f,
|
|
5 0xf8, 0x1f, 0xf8, 0x1f, 0xfc, 0x3f, 0xfc, 0x3f, 0xfc, 0x3f, 0xdc, 0x3b,
|
|
6 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03};
|