diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-06-18 20:21:40 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-06-18 20:21:40 +0300 |
commit | 922121e7ddbc107da14ea9c1280d15c828e85063 (patch) | |
tree | c44f63b0535fd8c19c719f2844319b06aefdf241 /src/w32font.c | |
parent | 4956e7610c782cace51943ee41f4c357703bdae1 (diff) | |
download | emacs-922121e7ddbc107da14ea9c1280d15c828e85063.tar.gz emacs-922121e7ddbc107da14ea9c1280d15c828e85063.tar.bz2 emacs-922121e7ddbc107da14ea9c1280d15c828e85063.zip |
Fix the handling of font backend supersedence on MS-Windows
* src/w32font.c (syms_of_w32font): Don't make the Uniscribe
font backend "superceded" here, ...
* src/w32uniscribe.c (syms_of_w32uniscribe_for_pdumper):
... make it "superceded" here, only if the HarfBuzz DLL was
successfully loaded. This is because Emacs compiled with
HarfBuzz support might run on a system without the DLL.
* src/w32fns.c (Fx_create_frame, w32_create_tip_frame):
Register the HarfBuzz font backend only if it is available.
Diffstat (limited to 'src/w32font.c')
-rw-r--r-- | src/w32font.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/w32font.c b/src/w32font.c index 5d54f048fb5..14d49b24d9b 100644 --- a/src/w32font.c +++ b/src/w32font.c @@ -2821,8 +2821,6 @@ versions of Windows) characters. */); defsubr (&Sx_select_font); - Fput (Quniscribe, Qfont_driver_superseded_by, Qharfbuzz); - pdumper_do_now_and_after_load (syms_of_w32font_for_pdumper); } |