emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

scratch/tty-child-frames 40aa1e329b6: Fix copy/paste error


From: Gerd Moellmann
Subject: scratch/tty-child-frames 40aa1e329b6: Fix copy/paste error
Date: Wed, 23 Oct 2024 01:53:02 -0400 (EDT)

branch: scratch/tty-child-frames
commit 40aa1e329b637e42fc945cba6213b4e7b4a5d60f
Author: Gerd Möllmann <gerd@gnu.org>
Commit: Gerd Möllmann <gerd@gnu.org>

    Fix copy/paste error
    
    * src/dispnew.c (produce_box_glyphs): DonÄt set multibyte_p twice, set
    padding_p.
---
 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;
     }
 }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]