aboutsummaryrefslogtreecommitdiffstats
path: root/src/ftfont.c
diff options
context:
space:
mode:
authorRobert Pluim2018-04-03 11:06:01 +0200
committerRobert Pluim2018-06-05 14:08:08 +0200
commitf21fa142aca53e3de5783e1ce6fe1bf116174aeb (patch)
treeabf916233ec6c14b7993be6a563dbb72a024bf3f /src/ftfont.c
parent55c9bb9f3c2971e347caeea1402f97fb603c4210 (diff)
downloademacs-f21fa142aca53e3de5783e1ce6fe1bf116174aeb.tar.gz
emacs-f21fa142aca53e3de5783e1ce6fe1bf116174aeb.zip
Ignore color fonts when using Xft
* src/font.c (syms_of_font): New configuration variable xft-ignore-color-fonts, default t. * src/ftfont.c (ftfont_spec_pattern): Tell fontconfig to ignore color fonts if xft-ignore-color-fonts is t. (Bug#30874, Bug#30045) * etc/NEWS: Document xft-ignore-color-fonts.
Diffstat (limited to 'src/ftfont.c')
-rw-r--r--src/ftfont.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ftfont.c b/src/ftfont.c
index c2e093e633d..24a92dd52e8 100644
--- a/src/ftfont.c
+++ b/src/ftfont.c
@@ -764,6 +764,13 @@ ftfont_spec_pattern (Lisp_Object spec, char *otlayout, struct OpenTypeSpec **ots
764 if (scalable >= 0 764 if (scalable >= 0
765 && ! FcPatternAddBool (pattern, FC_SCALABLE, scalable ? FcTrue : FcFalse)) 765 && ! FcPatternAddBool (pattern, FC_SCALABLE, scalable ? FcTrue : FcFalse))
766 goto err; 766 goto err;
767#ifdef HAVE_XFT
768 /* We really don't like color fonts, they cause Xft crashes. See
769 Bug#30874. */
770 if (Vxft_ignore_color_fonts
771 && ! FcPatternAddBool(pattern, FC_COLOR, FcFalse))
772 goto err;
773#endif
767 774
768 goto finish; 775 goto finish;
769 776