Add default fallbacks for macOS

This commit is contained in:
Jeremy Soller 2022-10-14 09:25:30 -06:00
parent 9e7fa311e5
commit 619a52ed4e

View file

@ -2,7 +2,10 @@ use unicode_script::Script;
// Fallbacks to use after any script specific fallbacks // Fallbacks to use after any script specific fallbacks
pub fn common_fallback() -> &'static [&'static str] { pub fn common_fallback() -> &'static [&'static str] {
&[] &[
".SF NS",
"Apple Color Emoji",
]
} }
// Fallbacks to use per script // Fallbacks to use per script