diff options
| author | Po Lu | 2024-03-15 11:50:09 +0800 |
|---|---|---|
| committer | Po Lu | 2024-03-15 11:52:11 +0800 |
| commit | c453c82dc6af2178ce10ffddccd9f38543ea6e88 (patch) | |
| tree | 6db3e917263ebdd99c4481244593b6829bc98678 | |
| parent | 77a86d738eebc7a80b7d4a6357a5fa675df9de8c (diff) | |
| download | emacs-c453c82dc6af2178ce10ffddccd9f38543ea6e88.tar.gz emacs-c453c82dc6af2178ce10ffddccd9f38543ea6e88.zip | |
* src/sfntfont-android.c (init_sfntfont_android): Fix SDK check.
| -rw-r--r-- | src/sfntfont-android.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sfntfont-android.c b/src/sfntfont-android.c index 94aedd0cd66..1ed394b9458 100644 --- a/src/sfntfont-android.c +++ b/src/sfntfont-android.c | |||
| @@ -770,7 +770,7 @@ init_sfntfont_android (void) | |||
| 770 | build_string ("Roboto")), | 770 | build_string ("Roboto")), |
| 771 | Fcons (build_string ("DejaVu Serif"), | 771 | Fcons (build_string ("DejaVu Serif"), |
| 772 | build_string ("Noto Serif"))); | 772 | build_string ("Noto Serif"))); |
| 773 | else if (api_level >= 15) | 773 | else if (api_level >= 14) |
| 774 | /* Android 4.0 and later distribute Roboto in lieu of Droid | 774 | /* Android 4.0 and later distribute Roboto in lieu of Droid |
| 775 | Sans. */ | 775 | Sans. */ |
| 776 | Vsfnt_default_family_alist | 776 | Vsfnt_default_family_alist |