bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#58028: 29.0.50; Ensures no leakage of glyph_matrix


From: Po Lu
Subject: bug#58028: 29.0.50; Ensures no leakage of glyph_matrix
Date: Sat, 24 Sep 2022 08:26:13 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux)

Manuel Giraud <manuel@ledu-giraud.fr> writes:

>         eassert ((w->desired_matrix == NULL) &&
>                  (w->current_matrix != NULL));

In Emacs, we typically format the code like so:

          eassert ((w->desired_matrix == NULL)
                   && (w->current_matrix != NULL));

> and test a little bit with emacs -Q and nothing break.  So I think
> you're right: when w->desired_matrix is NULL, both are.

BTW, did you build with checking?




reply via email to

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