summaryrefslogtreecommitdiff
path: root/src/composite.c
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2020-07-29 08:38:51 -0700
committerGlenn Morris <rgm@gnu.org>2020-07-29 08:38:51 -0700
commit775a3e19d2c14531055ae8cba21bc6a0a97f6a94 (patch)
tree124031eab2903fc9c5751313bb8b982a73121c8e /src/composite.c
parent50237759b042d5f2e3df9403a4c1697c381f6eae (diff)
parent4b3085a7fe8980432aa63ddf614fee2a6fb04e94 (diff)
downloademacs-775a3e19d2c14531055ae8cba21bc6a0a97f6a94.tar.gz
emacs-775a3e19d2c14531055ae8cba21bc6a0a97f6a94.tar.bz2
emacs-775a3e19d2c14531055ae8cba21bc6a0a97f6a94.zip
Merge from origin/emacs-27
4b3085a7fe Fix last change efdd4632c9 Fix Arabic shaping when column-number-mode is in effect d5acc50941 Fix description of kmacro-* commands in the user manual
Diffstat (limited to 'src/composite.c')
-rw-r--r--src/composite.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/composite.c b/src/composite.c
index 2c589e4f3a9..f96f0b77726 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -1167,7 +1167,9 @@ composition_compute_stop_pos (struct composition_it *cmp_it, ptrdiff_t charpos,
character to check, and CHARPOS and BYTEPOS are indices in the
string. In that case, FACE must not be NULL. BIDI_LEVEL is the bidi
embedding level of the current paragraph, and is used to calculate the
- direction argument to pass to the font shaper.
+ direction argument to pass to the font shaper; value of -1 means the
+ caller doesn't know the embedding level (used by callers which didn't
+ invoke the display routines that perform bidi-display-reordering).
If the character is composed, setup members of CMP_IT (id, nglyphs,
from, to, reversed_p), and return true. Otherwise, update
@@ -1213,7 +1215,9 @@ composition_reseat_it (struct composition_it *cmp_it, ptrdiff_t charpos,
continue;
if (charpos < endpos)
{
- if ((bidi_level & 1) == 0)
+ if (bidi_level < 0)
+ direction = Qnil;
+ else if ((bidi_level & 1) == 0)
direction = QL2R;
else
direction = QR2L;
@@ -1250,7 +1254,16 @@ composition_reseat_it (struct composition_it *cmp_it, ptrdiff_t charpos,
else
bpos = CHAR_TO_BYTE (cpos);
}
- if ((bidi_level & 1) == 0)
+ /* The bidi_level < 0 case below strictly speaking should
+ never happen, since we get here when bidi scan direction
+ is backward in the buffer, which can only happen if the
+ display routines were called to perform the bidi
+ reordering. But it doesn't harm to test for that, and
+ avoid someon raising their brows and thinking it's a
+ subtle bug... */
+ if (bidi_level < 0)
+ direction = Qnil;
+ else if ((bidi_level & 1) == 0)
direction = QL2R;
else
direction = QR2L;