From: Richard M. Stallman Date: Thu, 6 Jun 1996 15:26:05 +0000 (+0000) Subject: (Fset_face_attribute_internal) [MSDOS]: Don't mask X-Git-Tag: emacs-19.34~522 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4f5fb8b58ea44131238a128f0245b38f3ba0186d;p=emacs.git (Fset_face_attribute_internal) [MSDOS]: Don't mask bright color bit in background colors. --- 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; }