summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-06 15:26:05 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-06 15:26:05 +0000
commit1811b904914005b98e1992f0a098b4548f3908b9 (patch)
tree488b84f63cea863b29b8d96be5b7b59d74a573c0
parentb480e26dd6be58c9e93f3d0bfa152b27bd604b07 (diff)
downloademacs-1811b904914005b98e1992f0a098b4548f3908b9.tar.gz
(Fset_face_attribute_internal) [MSDOS]: Don't mask
bright color bit in background colors.
-rw-r--r--src/xfaces.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 6141c040517..ced23638926 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1183,9 +1183,6 @@ DEFUN ("set-face-attribute-internal", Fset_face_attribute_internal,
{
unsigned long new_color = load_color (f, attr_value);
unload_color (f, face->background);
-#if defined (MSDOS) && !defined (HAVE_X_WINDOWS)
- new_color &= ~8; /* Bright would give blinking characters. */
-#endif
face->background = new_color;
garbaged = 1;
}