diff options
| author | YAMAMOTO Mitsuharu | 2019-12-03 16:07:29 +0900 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2019-12-03 16:10:24 +0900 |
| commit | 16ce6dbef279bda70b4d60b4d2d0aff008bfa5f7 (patch) | |
| tree | 39fec44c32e8e734e4fac51d8c6e5cccbb29e1f5 /src | |
| parent | 9a911b4af50fdfef308aab8e2492392f0986580b (diff) | |
| download | emacs-16ce6dbef279bda70b4d60b4d2d0aff008bfa5f7.tar.gz emacs-16ce6dbef279bda70b4d60b4d2d0aff008bfa5f7.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ftcrfont.c | 2 | ||||
| -rw-r--r-- | src/ftfont.c | 2 | ||||
| -rw-r--r-- | src/w32uniscribe.c | 2 | ||||
| -rw-r--r-- | src/xftfont.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/ftcrfont.c b/src/ftcrfont.c index f0c7cbb8c86..9701296c15b 100644 --- a/src/ftcrfont.c +++ b/src/ftcrfont.c | |||
| @@ -620,7 +620,7 @@ syms_of_ftcrfont_for_pdumper (void) | |||
| 620 | ftcrhbfont_driver.type = Qftcrhb; | 620 | ftcrhbfont_driver.type = Qftcrhb; |
| 621 | ftcrhbfont_driver.list = ftcrhbfont_list; | 621 | ftcrhbfont_driver.list = ftcrhbfont_list; |
| 622 | ftcrhbfont_driver.match = ftcrhbfont_match; | 622 | ftcrhbfont_driver.match = ftcrhbfont_match; |
| 623 | ftcrhbfont_driver.otf_capability = hbfont_otf_capability, | 623 | ftcrhbfont_driver.otf_capability = hbfont_otf_capability; |
| 624 | ftcrhbfont_driver.shape = hbfont_shape; | 624 | ftcrhbfont_driver.shape = hbfont_shape; |
| 625 | ftcrhbfont_driver.combining_capability = hbfont_combining_capability; | 625 | ftcrhbfont_driver.combining_capability = hbfont_combining_capability; |
| 626 | ftcrhbfont_driver.begin_hb_font = ftcrhbfont_begin_hb_font; | 626 | ftcrhbfont_driver.begin_hb_font = ftcrhbfont_begin_hb_font; |
diff --git a/src/ftfont.c b/src/ftfont.c index d649c991dd6..b8199dc4ba7 100644 --- a/src/ftfont.c +++ b/src/ftfont.c | |||
| @@ -3120,7 +3120,7 @@ syms_of_ftfont_for_pdumper (void) | |||
| 3120 | #ifdef HAVE_HARFBUZZ | 3120 | #ifdef HAVE_HARFBUZZ |
| 3121 | fthbfont_driver = ftfont_driver; | 3121 | fthbfont_driver = ftfont_driver; |
| 3122 | fthbfont_driver.type = Qfreetypehb; | 3122 | fthbfont_driver.type = Qfreetypehb; |
| 3123 | fthbfont_driver.otf_capability = hbfont_otf_capability, | 3123 | fthbfont_driver.otf_capability = hbfont_otf_capability; |
| 3124 | fthbfont_driver.shape = hbfont_shape; | 3124 | fthbfont_driver.shape = hbfont_shape; |
| 3125 | fthbfont_driver.combining_capability = hbfont_combining_capability; | 3125 | fthbfont_driver.combining_capability = hbfont_combining_capability; |
| 3126 | fthbfont_driver.begin_hb_font = fthbfont_begin_hb_font; | 3126 | fthbfont_driver.begin_hb_font = fthbfont_begin_hb_font; |
diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c index 8fbbe7e4a9e..3ef4e31b4fb 100644 --- a/src/w32uniscribe.c +++ b/src/w32uniscribe.c | |||
| @@ -1549,7 +1549,7 @@ syms_of_w32uniscribe_for_pdumper (void) | |||
| 1549 | harfbuzz_font_driver.list = w32hb_list; | 1549 | harfbuzz_font_driver.list = w32hb_list; |
| 1550 | harfbuzz_font_driver.match = w32hb_match; | 1550 | harfbuzz_font_driver.match = w32hb_match; |
| 1551 | harfbuzz_font_driver.encode_char = w32hb_encode_char; | 1551 | harfbuzz_font_driver.encode_char = w32hb_encode_char; |
| 1552 | harfbuzz_font_driver.otf_capability = hbfont_otf_capability, | 1552 | harfbuzz_font_driver.otf_capability = hbfont_otf_capability; |
| 1553 | harfbuzz_font_driver.shape = hbfont_shape; | 1553 | harfbuzz_font_driver.shape = hbfont_shape; |
| 1554 | harfbuzz_font_driver.get_variation_glyphs = w32hb_get_variation_glyphs; | 1554 | harfbuzz_font_driver.get_variation_glyphs = w32hb_get_variation_glyphs; |
| 1555 | harfbuzz_font_driver.combining_capability = hbfont_combining_capability; | 1555 | harfbuzz_font_driver.combining_capability = hbfont_combining_capability; |
diff --git a/src/xftfont.c b/src/xftfont.c index fa06d967369..7d84e0e0d63 100644 --- a/src/xftfont.c +++ b/src/xftfont.c | |||
| @@ -702,7 +702,7 @@ syms_of_xftfont_for_pdumper (void) | |||
| 702 | xfthbfont_driver.type = Qxfthb; | 702 | xfthbfont_driver.type = Qxfthb; |
| 703 | xfthbfont_driver.list = xfthbfont_list; | 703 | xfthbfont_driver.list = xfthbfont_list; |
| 704 | xfthbfont_driver.match = xfthbfont_match; | 704 | xfthbfont_driver.match = xfthbfont_match; |
| 705 | xfthbfont_driver.otf_capability = hbfont_otf_capability, | 705 | xfthbfont_driver.otf_capability = hbfont_otf_capability; |
| 706 | xfthbfont_driver.shape = hbfont_shape; | 706 | xfthbfont_driver.shape = hbfont_shape; |
| 707 | xfthbfont_driver.combining_capability = hbfont_combining_capability; | 707 | xfthbfont_driver.combining_capability = hbfont_combining_capability; |
| 708 | xfthbfont_driver.begin_hb_font = xfthbfont_begin_hb_font; | 708 | xfthbfont_driver.begin_hb_font = xfthbfont_begin_hb_font; |