From e7f6129e03ffd958ddfc3d67af2b9ce7df0c6b76 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerd=20M=C3=B6llmann?= Date: Wed, 23 Oct 2024 07:51:12 +0200 Subject: [PATCH] Fix copy/paste error MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * src/dispnew.c (produce_box_glyphs): DonÄt set multibyte_p twice, set padding_p. (cherry picked from commit 40aa1e329b637e42fc945cba6213b4e7b4a5d60f) --- src/dispnew.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index 1ece9cc1d45..8aa8e0fb5f5 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -3561,8 +3561,9 @@ produce_box_glyphs (enum box box, struct glyph_row *row, int x, int n, glyph->multibyte_p = 1; glyph->face_id = GLYPH_FACE (g); glyph->frame = child; - glyph->multibyte_p = 1; + glyph->padding_p = 0; glyph->object = Qnil; + glyph->padding_p = 0; } } -- 2.39.5