aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Möllmann2024-10-23 07:51:12 +0200
committerGerd Möllmann2024-10-23 07:52:39 +0200
commit40aa1e329b637e42fc945cba6213b4e7b4a5d60f (patch)
tree69ead6dd39975ddba31bc9b110b329395d79017a
parentdac51f1f66ef93cec6d9ea17e74a193de9ae1ff3 (diff)
downloademacs-40aa1e329b637e42fc945cba6213b4e7b4a5d60f.tar.gz
emacs-40aa1e329b637e42fc945cba6213b4e7b4a5d60f.zip
Fix copy/paste error
* src/dispnew.c (produce_box_glyphs): DonÄt set multibyte_p twice, set padding_p.
-rw-r--r--src/dispnew.c3
1 files changed, 2 insertions, 1 deletions
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,
3561 glyph->multibyte_p = 1; 3561 glyph->multibyte_p = 1;
3562 glyph->face_id = GLYPH_FACE (g); 3562 glyph->face_id = GLYPH_FACE (g);
3563 glyph->frame = child; 3563 glyph->frame = child;
3564 glyph->multibyte_p = 1; 3564 glyph->padding_p = 0;
3565 glyph->object = Qnil; 3565 glyph->object = Qnil;
3566 glyph->padding_p = 0;
3566 } 3567 }
3567} 3568}
3568 3569