Fix typo in populating otf_capability method for HarfBuzz
* src/ftcrfont.c (syms_of_ftcrfont_for_pdumper) [HAVE_HARFBUZZ]: * src/ftfont.c (syms_of_ftfont_for_pdumper) [HAVE_HARFBUZZ]: * src/w32uniscribe.c (syms_of_w32uniscribe_for_pdumper) [HAVE_HARFBUZZ]: * src/xftfont.c (syms_of_xftfont_for_pdumper) [HAVE_HARFBUZZ]: Fix typos.
This commit is contained in:
parent
9a911b4af5
commit
16ce6dbef2
4 changed files with 4 additions and 4 deletions
|
@ -620,7 +620,7 @@ syms_of_ftcrfont_for_pdumper (void)
|
|||
ftcrhbfont_driver.type = Qftcrhb;
|
||||
ftcrhbfont_driver.list = ftcrhbfont_list;
|
||||
ftcrhbfont_driver.match = ftcrhbfont_match;
|
||||
ftcrhbfont_driver.otf_capability = hbfont_otf_capability,
|
||||
ftcrhbfont_driver.otf_capability = hbfont_otf_capability;
|
||||
ftcrhbfont_driver.shape = hbfont_shape;
|
||||
ftcrhbfont_driver.combining_capability = hbfont_combining_capability;
|
||||
ftcrhbfont_driver.begin_hb_font = ftcrhbfont_begin_hb_font;
|
||||
|
|
|
@ -3120,7 +3120,7 @@ syms_of_ftfont_for_pdumper (void)
|
|||
#ifdef HAVE_HARFBUZZ
|
||||
fthbfont_driver = ftfont_driver;
|
||||
fthbfont_driver.type = Qfreetypehb;
|
||||
fthbfont_driver.otf_capability = hbfont_otf_capability,
|
||||
fthbfont_driver.otf_capability = hbfont_otf_capability;
|
||||
fthbfont_driver.shape = hbfont_shape;
|
||||
fthbfont_driver.combining_capability = hbfont_combining_capability;
|
||||
fthbfont_driver.begin_hb_font = fthbfont_begin_hb_font;
|
||||
|
|
|
@ -1549,7 +1549,7 @@ syms_of_w32uniscribe_for_pdumper (void)
|
|||
harfbuzz_font_driver.list = w32hb_list;
|
||||
harfbuzz_font_driver.match = w32hb_match;
|
||||
harfbuzz_font_driver.encode_char = w32hb_encode_char;
|
||||
harfbuzz_font_driver.otf_capability = hbfont_otf_capability,
|
||||
harfbuzz_font_driver.otf_capability = hbfont_otf_capability;
|
||||
harfbuzz_font_driver.shape = hbfont_shape;
|
||||
harfbuzz_font_driver.get_variation_glyphs = w32hb_get_variation_glyphs;
|
||||
harfbuzz_font_driver.combining_capability = hbfont_combining_capability;
|
||||
|
|
|
@ -702,7 +702,7 @@ syms_of_xftfont_for_pdumper (void)
|
|||
xfthbfont_driver.type = Qxfthb;
|
||||
xfthbfont_driver.list = xfthbfont_list;
|
||||
xfthbfont_driver.match = xfthbfont_match;
|
||||
xfthbfont_driver.otf_capability = hbfont_otf_capability,
|
||||
xfthbfont_driver.otf_capability = hbfont_otf_capability;
|
||||
xfthbfont_driver.shape = hbfont_shape;
|
||||
xfthbfont_driver.combining_capability = hbfont_combining_capability;
|
||||
xfthbfont_driver.begin_hb_font = xfthbfont_begin_hb_font;
|
||||
|
|
Loading…
Add table
Reference in a new issue