From: Eli Zaretskii <eliz@gnu.org>
To: Visuwesh <visuweshm@gmail.com>
Cc: dev@real-or-random.org, xuan@xlk.me, 73752@debbugs.gnu.org
Subject: bug#73752: 29.4; Ligatures are randomly rendered with extra spaces
Date: Sat, 02 Nov 2024 20:27:44 +0200 [thread overview]
Message-ID: <868qu1xzhb.fsf@gnu.org> (raw)
In-Reply-To: <87h68pwm2a.fsf@gmail.com> (message from Visuwesh on Sat, 02 Nov 2024 23:32:53 +0530)
> From: Visuwesh <visuweshm@gmail.com>
> Cc: dev@real-or-random.org, xuan@xlk.me, 73752@debbugs.gnu.org
> Date: Sat, 02 Nov 2024 23:32:53 +0530
>
> [சனி நவம்பர் 02, 2024] Visuwesh wrote:
>
> > [சனி நவம்பர் 02, 2024] Eli Zaretskii wrote:
> >
> >> Ah, that explains the problem. Then please change the breakpoint
> >> condition to say this instead, and re-run the experiment:
> >>
> >> break hbfont.c:598 if xoff == 0 && yoff == 0 && wadjust ==
> >> metrics.width && ((struct Lisp_Object)LGLYPH_ADJUSTMENT(lglyph)).i
> >> != 0
> >
> > It doesn't break immediately anymore. I will report back once the
> > breakpoint breaks.
>
> I tried reproducing it again. The misalignment occurred but the
> breakpoint was not triggered:
>
> (gdb) pgrow
> TEXT: 4 glyphs
> 0 0: COMP[3457 (0..0)] pos=1 w=10 a+d=14+4 face=23 MB
> 1 10: COMP[3457 (1..1)] pos=2 w=10 a+d=14+4 face=23 MB
> 2 20: COMP[3457 (2..2)] pos=3 w=10 a+d=14+4 face=23 MB
> 3 30: CHAR[ ] pos=0 blev=0,btyp=B w=9 a+d=14+4 MB
> (gdb) pp composition_gstring_from_id(3457)
> [[#<font-object "-SAJA-Cascadia Code-bold-normal-normal-*-15-*-*-*-m-0-iso10646-1"> 45 45 62] 3457 [0 0 45 1970 9 0 9 7 -4 [0 0 10]] [1 1 45 1969 9 -1 10 7 -4 [0 0 10]] [2 2 62 2728 9 -1 9 11 0 [0 0 10]]]
>
> where to get to type `pgrow' I said
>
> % kill -TSTP 222729
>
> then set the breakpoint for set_cursor_from_row like you instructed
> earlier.
>
> I can try to reproduce this issue once again to see if the breakpoint
> gets triggered.
Please also put a breakpoint in composite.c on the line shown below,
before you try reproducing again:
if (NILP (glyph) || from != LGLYPH_FROM (glyph))
{
eassert (i > 0);
Lisp_Object last = LGSTRING_GLYPH (gstring, i - 1);
if (width == 0)
{
if (NILP (LGLYPH_ADJUSTMENT (last))) <<<<<<<<<<<<<<<<<<<<<
LGLYPH_SET_ADJUSTMENT (last,
CALLN (Fvector,
make_fixnum (0), make_fixnum (0),
make_fixnum (LGLYPH_WIDTH (last)
+ 1)));
else
ASET (LGLYPH_ADJUSTMENT (last), 2,
make_fixnum (LGLYPH_WADJUST (last) + 1));
}
next prev parent reply other threads:[~2024-11-02 18:27 UTC|newest]
Thread overview: 90+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-11 16:18 bug#73752: 29.4; Ligatures are randomly rendered with extra spaces xuan
2024-10-12 8:02 ` Eli Zaretskii
2024-10-12 16:09 ` Yixuan Chen
2024-10-27 10:21 ` Eli Zaretskii
2024-10-27 16:19 ` Visuwesh
2024-10-27 17:19 ` Eli Zaretskii
2024-10-27 17:27 ` Eli Zaretskii
2024-10-27 17:39 ` Yixuan Chen
2024-10-27 17:43 ` Eli Zaretskii
2024-10-27 17:46 ` Yixuan Chen
2024-10-27 19:14 ` Eli Zaretskii
2024-10-27 19:36 ` Yixuan Chen
2024-10-27 19:44 ` Eli Zaretskii
2024-10-27 19:47 ` Yixuan Chen
2024-10-27 20:11 ` Eli Zaretskii
2024-10-27 19:41 ` Yixuan Chen
2024-10-27 20:07 ` Eli Zaretskii
2024-10-27 20:32 ` Yixuan Chen
2024-10-28 14:25 ` Eli Zaretskii
2024-10-28 14:44 ` Yixuan Chen
2024-10-28 14:47 ` Yixuan Chen
2024-10-28 15:05 ` Eli Zaretskii
2024-10-28 15:20 ` Yixuan Chen
2024-10-28 17:19 ` Eli Zaretskii
2024-10-28 17:26 ` Eli Zaretskii
2024-10-28 17:28 ` Yixuan Chen
2024-10-28 18:41 ` Eli Zaretskii
2024-10-28 4:26 ` Visuwesh
2024-10-28 14:59 ` Eli Zaretskii
2024-10-28 15:24 ` Yixuan Chen
2024-10-28 16:18 ` Visuwesh
2024-10-28 17:13 ` Eli Zaretskii
2024-10-29 10:59 ` Visuwesh
2024-10-29 13:04 ` Eli Zaretskii
2024-10-29 13:54 ` Visuwesh
2024-10-29 14:00 ` Visuwesh
2024-10-29 15:38 ` Eli Zaretskii
2024-10-29 16:46 ` Visuwesh
2024-10-29 17:45 ` Eli Zaretskii
2024-10-30 5:43 ` Visuwesh
2024-10-29 16:51 ` Eli Zaretskii
2024-10-27 17:29 ` Yixuan Chen
2024-10-29 23:14 ` Tim Ruffing
2024-10-30 15:12 ` Eli Zaretskii
2024-10-30 15:45 ` Eli Zaretskii
[not found] ` <mvmikt9zkcq.fsf@suse.de>
2024-10-30 15:47 ` Eli Zaretskii
2024-10-30 17:34 ` Tim Ruffing
2024-10-30 17:46 ` Eli Zaretskii
2024-10-30 18:00 ` Tim Ruffing
2024-10-30 18:57 ` Eli Zaretskii
2024-10-31 1:39 ` Tim Ruffing
2024-10-31 2:36 ` Yixuan Chen
2024-10-31 2:46 ` Yixuan Chen
2024-10-31 7:44 ` Eli Zaretskii
2024-10-31 9:42 ` Eli Zaretskii
2024-11-01 17:05 ` Eli Zaretskii
2024-11-02 3:34 ` Tim Ruffing
2024-11-02 9:52 ` Eli Zaretskii
2024-11-02 10:39 ` Visuwesh
2024-11-02 12:07 ` Eli Zaretskii
2024-11-02 13:29 ` Visuwesh
2024-11-02 16:47 ` Eli Zaretskii
2024-11-02 17:04 ` Visuwesh
2024-11-02 17:18 ` Eli Zaretskii
2024-11-02 17:31 ` Visuwesh
2024-11-02 17:34 ` Eli Zaretskii
2024-11-02 17:39 ` Visuwesh
2024-11-02 17:44 ` Eli Zaretskii
2024-11-02 17:54 ` Visuwesh
2024-11-02 18:02 ` Visuwesh
2024-11-02 18:27 ` Eli Zaretskii [this message]
2024-11-04 0:11 ` Tim Ruffing
2024-11-04 17:45 ` Eli Zaretskii
2024-11-04 18:02 ` Visuwesh
2024-11-04 23:33 ` Tim Ruffing
2024-11-04 23:47 ` Tim Ruffing
2024-11-06 12:02 ` Tim Ruffing
2024-11-06 13:11 ` Eli Zaretskii
2024-11-07 2:12 ` Tim Ruffing
2024-11-07 7:05 ` Eli Zaretskii
2024-11-07 13:45 ` Visuwesh
2024-11-07 14:40 ` Eli Zaretskii
2024-11-07 15:13 ` Visuwesh
2024-11-07 15:49 ` Eli Zaretskii
2024-11-07 16:00 ` Visuwesh
2024-11-08 8:08 ` Eli Zaretskii
2024-11-06 14:50 ` Visuwesh
2024-11-02 10:32 ` Visuwesh
2024-10-31 8:12 ` Visuwesh
2024-10-31 9:43 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=868qu1xzhb.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=73752@debbugs.gnu.org \
--cc=dev@real-or-random.org \
--cc=visuweshm@gmail.com \
--cc=xuan@xlk.me \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).