diff options
| author | Richard M. Stallman | 1996-06-06 15:26:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-06 15:26:05 +0000 |
| commit | 4f5fb8b58ea44131238a128f0245b38f3ba0186d (patch) | |
| tree | b8128ee8205a772dda8fb42527f727a06901af44 /src | |
| parent | ae2d451b43ce97d35e85714a100808b6ce6d4da6 (diff) | |
| download | emacs-4f5fb8b58ea44131238a128f0245b38f3ba0186d.tar.gz emacs-4f5fb8b58ea44131238a128f0245b38f3ba0186d.zip | |
(Fset_face_attribute_internal) [MSDOS]: Don't mask
bright color bit in background colors.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 3 |
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, | |||
| 1183 | { | 1183 | { |
| 1184 | unsigned long new_color = load_color (f, attr_value); | 1184 | unsigned long new_color = load_color (f, attr_value); |
| 1185 | unload_color (f, face->background); | 1185 | unload_color (f, face->background); |
| 1186 | #if defined (MSDOS) && !defined (HAVE_X_WINDOWS) | ||
| 1187 | new_color &= ~8; /* Bright would give blinking characters. */ | ||
| 1188 | #endif | ||
| 1189 | face->background = new_color; | 1186 | face->background = new_color; |
| 1190 | garbaged = 1; | 1187 | garbaged = 1; |
| 1191 | } | 1188 | } |