]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix copy/paste error
authorGerd Möllmann <gerd@gnu.org>
Wed, 23 Oct 2024 05:51:12 +0000 (07:51 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 23 Dec 2024 14:53:29 +0000 (15:53 +0100)
* src/dispnew.c (produce_box_glyphs): DonÄt set multibyte_p twice, set
padding_p.

(cherry picked from commit 40aa1e329b637e42fc945cba6213b4e7b4a5d60f)

src/dispnew.c

index 1ece9cc1d4568ae59934f1ddbaa8ba96e4dac422..8aa8e0fb5f5cd44d6a7c94f506e8ede9d5e2201e 100644 (file)
@@ -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;
     }
 }