]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_face_attribute_internal) [MSDOS]: Don't mask
authorRichard M. Stallman <rms@gnu.org>
Thu, 6 Jun 1996 15:26:05 +0000 (15:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 6 Jun 1996 15:26:05 +0000 (15:26 +0000)
bright color bit in background colors.

src/xfaces.c

index 6141c040517c4277bc37c123d253d2346cead36c..ced2363892676d21f07263cd362b76322dd010a8 100644 (file)
@@ -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;
     }