From: Gerd Möllmann Date: Wed, 23 Oct 2024 05:51:12 +0000 (+0200) Subject: Fix copy/paste error X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e7f6129e03ffd958ddfc3d67af2b9ce7df0c6b76;p=emacs.git Fix copy/paste error * src/dispnew.c (produce_box_glyphs): DonÄt set multibyte_p twice, set padding_p. (cherry picked from commit 40aa1e329b637e42fc945cba6213b4e7b4a5d60f) --- 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; } }