diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2022-09-27 09:20:58 +0900 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2022-09-27 09:22:00 +0900 |
commit | cd88f6de4be1f8eba1db038b371d769f584be53b (patch) | |
tree | 0b31174846cd5c9b67c0f81eed3e9869edfd0e6b /src/composite.c | |
parent | a27e4832131bbc02ab21d0d5febffc5fe6339906 (diff) | |
download | emacs-cd88f6de4be1f8eba1db038b371d769f584be53b.tar.gz emacs-cd88f6de4be1f8eba1db038b371d769f584be53b.tar.bz2 emacs-cd88f6de4be1f8eba1db038b371d769f584be53b.zip |
Adjust zero-width grapheme clusters so they are displayed (Bug#50951)
* src/composite.c (composition_gstring_adjust_zero_width): New function.
* src/composite.h: Declare it.
* src/font.c (Ffont_shape_gstring): Use it before putting gstring to cache.
Diffstat (limited to 'src/composite.c')
-rw-r--r-- | src/composite.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/composite.c b/src/composite.c index 249d7587f61..0417bc866d4 100644 --- a/src/composite.c +++ b/src/composite.c @@ -800,6 +800,50 @@ composition_gstring_width (Lisp_Object gstring, ptrdiff_t from, ptrdiff_t to, return width; } +/* Adjust the width of each grapheme cluster of GSTRING because + zero-width grapheme clusters are not displayed. If the width is + zero, then the width of the last glyph in the cluster is + incremented. */ + +void +composition_gstring_adjust_zero_width (Lisp_Object gstring) +{ + ptrdiff_t from = 0; + int width = 0; + + for (ptrdiff_t i = 0; ; i++) + { + Lisp_Object glyph; + + if (i == LGSTRING_GLYPH_LEN (gstring) + || (glyph = LGSTRING_GLYPH (gstring, i), + (NILP (glyph) || from != LGLYPH_FROM (glyph)))) + { + eassert (i > 0); + Lisp_Object last = LGSTRING_GLYPH (gstring, i - 1); + + if (width == 0) + { + if (NILP (LGLYPH_ADJUSTMENT (last))) + LGLYPH_SET_ADJUSTMENT (last, + CALLN (Fvector, + make_fixnum (0), make_fixnum (0), + make_fixnum (LGLYPH_WIDTH (last) + + 1))); + else + ASET (LGLYPH_ADJUSTMENT (last), 2, + make_fixnum (LGLYPH_WADJUST (last) + 1)); + } + if (i == LGSTRING_GLYPH_LEN (gstring) || NILP (glyph)) + break; + from = LGLYPH_FROM (glyph); + width = 0; + } + width += (NILP (LGLYPH_ADJUSTMENT (glyph)) + ? LGLYPH_WIDTH (glyph) : LGLYPH_WADJUST (glyph)); + } +} + static Lisp_Object gstring_work; static Lisp_Object gstring_work_headers; |