diff options
author | Robert Pluim <rpluim@gmail.com> | 2021-10-18 11:51:10 +0200 |
---|---|---|
committer | Robert Pluim <rpluim@gmail.com> | 2021-10-19 14:40:26 +0200 |
commit | 9bd2f59db608def1b588b03eff846d3fe8a7fa00 (patch) | |
tree | 39a768d3990701aef8461a40f7c595c424382766 /src/composite.c | |
parent | e55e2d4a110447540db6bbdb9cb1c12313b4b8ad (diff) | |
download | emacs-9bd2f59db608def1b588b03eff846d3fe8a7fa00.tar.gz emacs-9bd2f59db608def1b588b03eff846d3fe8a7fa00.tar.bz2 emacs-9bd2f59db608def1b588b03eff846d3fe8a7fa00.zip |
Handle VS-16 correctly for non-emoji codepoints
* admin/unidata/blocks.awk: Remove emoji overrides for codepoints with
Emoji_Presentation = No, they're no longer necessary.
* lisp/composite.el: Remove #xFE0F (VS-16) from the range handled by
`compose-gstring-for-variation-glyph' so it can be handled by
`font_range'.
* src/composite.c (syms_of_composite): New variable
`auto-composition-emoji-eligible-codepoints'.
* admin/unidata/emoji-zwj.awk: Generate value for
`auto-composition-emoji-eligible-codepoints'. Add
`composition-function-table' entries for 'codepoint + U+FE0F' for
them.
* src/font.c (codepoint_is_emoji_eligible): New function to check if
we should try to use the emoji font for a codepoint.
(font_range): Use it.
Diffstat (limited to 'src/composite.c')
-rw-r--r-- | src/composite.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/composite.c b/src/composite.c index f456e7a835d..c170805d9dd 100644 --- a/src/composite.c +++ b/src/composite.c @@ -2124,6 +2124,17 @@ GSTRING, or modify GSTRING itself and return it. See also the documentation of `auto-composition-mode'. */); Vcomposition_function_table = Fmake_char_table (Qnil, Qnil); + DEFVAR_LISP ("auto-composition-emoji-eligible-codepoints", Vauto_composition_emoji_eligible_codepoints, + doc: /* List of codepoints for which auto-composition will check for an emoji font. + +These are codepoints which have Emoji_Presentation = No, and thus by +default are not displayed as emoji. In certain circumstances, such as +when followed by U+FE0F (VS-16) the emoji font should be used for +them anyway. + +This list is auto-generated, you should not need to modify it. */); + Vauto_composition_emoji_eligible_codepoints = Qnil; + defsubr (&Scompose_region_internal); defsubr (&Scompose_string_internal); defsubr (&Sfind_composition_internal); |