aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index d5ffb25eb18..14d6f8fcf93 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -27369,8 +27369,8 @@ x_produce_glyphs (struct it *it)
27369 27369
27370 eassume (0 < glyph_len); /* See Bug#8512. */ 27370 eassume (0 < glyph_len); /* See Bug#8512. */
27371 do 27371 do
27372 c = COMPOSITION_GLYPH (cmp, --glyph_len); 27372 c = COMPOSITION_GLYPH (cmp, glyph_len - 1);
27373 while (c == '\t' && 0 < glyph_len); 27373 while (c == '\t' && 0 < --glyph_len);
27374 27374
27375 bool right_padded = glyph_len < cmp->glyph_len; 27375 bool right_padded = glyph_len < cmp->glyph_len;
27376 for (i = 0; i < glyph_len; i++) 27376 for (i = 0; i < glyph_len; i++)