aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobert Pluim2019-11-14 13:18:58 +0100
committerRobert Pluim2019-11-14 13:20:39 +0100
commit99550f20a0cf294e271a1132ff1e5e57554c74f2 (patch)
tree43233874c3e629462ff864873e692da10da92ed2 /src
parent31be86c3478b1ca587357bf6b2c8be8c68d6f047 (diff)
downloademacs-99550f20a0cf294e271a1132ff1e5e57554c74f2.tar.gz
emacs-99550f20a0cf294e271a1132ff1e5e57554c74f2.zip
; Add explanation for face-ignored-fonts defaults
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index d2dfbffe4e3..7ca60c87b1a 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -6777,13 +6777,14 @@ other font of the appropriate family and registry is available. */);
6777Each element is a regular expression that matches names of fonts to 6777Each element is a regular expression that matches names of fonts to
6778ignore. */); 6778ignore. */);
6779#ifdef HAVE_XFT 6779#ifdef HAVE_XFT
6780 /* Bug#37786. */ 6780 /* This font causes libXft crashes, so ignore it by default. Bug#37786. */
6781 Vface_ignored_fonts = list1 (build_string ("Noto Color Emoji")); 6781 Vface_ignored_fonts = list1 (build_string ("Noto Color Emoji"));
6782#else 6782#else
6783 Vface_ignored_fonts = Qnil; 6783 Vface_ignored_fonts = Qnil;
6784#endif 6784#endif
6785#ifdef HAVE_OTF_KANNADA_BUG 6785#ifdef HAVE_OTF_KANNADA_BUG
6786 /* https://debbugs.gnu.org/30193 */ 6786 /* This font causes libotf crashes, so ignore it when we know we're
6787 using a vulnerable version. https://debbugs.gnu.org/30193 */
6787 Vface_ignored_fonts = Fcons (build_string ("Noto Serif Kannada"), Vface_ignored_fonts); 6788 Vface_ignored_fonts = Fcons (build_string ("Noto Serif Kannada"), Vface_ignored_fonts);
6788#endif 6789#endif
6789 6790