mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-21 12:03:55 -08:00
Add "Noto Color Emoji" to face-ignored-fonts
* src/xfaces.c (syms_of_xfaces) [HAVE_XFT]: Add "Noto Color Emoji" to face-ignored-fonts (Bug#37786).
This commit is contained in:
parent
3b88ab1a50
commit
eae50e88ef
1 changed files with 7 additions and 3 deletions
10
src/xfaces.c
10
src/xfaces.c
|
|
@ -6776,12 +6776,16 @@ other font of the appropriate family and registry is available. */);
|
|||
doc: /* List of ignored fonts.
|
||||
Each element is a regular expression that matches names of fonts to
|
||||
ignore. */);
|
||||
#ifdef HAVE_OTF_KANNADA_BUG
|
||||
/* https://debbugs.gnu.org/30193 */
|
||||
Vface_ignored_fonts = list1 (build_string ("Noto Serif Kannada"));
|
||||
#ifdef HAVE_XFT
|
||||
/* Bug#37786. */
|
||||
Vface_ignored_fonts = list1 (build_string ("Noto Color Emoji"));
|
||||
#else
|
||||
Vface_ignored_fonts = Qnil;
|
||||
#endif
|
||||
#ifdef HAVE_OTF_KANNADA_BUG
|
||||
/* https://debbugs.gnu.org/30193 */
|
||||
Vface_ignored_fonts = Fcons (build_string ("Noto Serif Kannada"), Vface_ignored_fonts);
|
||||
#endif
|
||||
|
||||
DEFVAR_LISP ("face-remapping-alist", Vface_remapping_alist,
|
||||
doc: /* Alist of face remappings.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue