unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
@ 2023-08-03 16:07 Felix
  2023-08-03 17:20 ` bug#65042: Simple example to reproduce Felix
  2023-08-04  0:37 ` bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 2 replies; 14+ messages in thread
From: Felix @ 2023-08-03 16:07 UTC (permalink / raw)
  To: 65042


The background of stipple stays opaque with alpha-background parameter
set for transparency.
This came up in the use of the new package 'indent-bars'.
The github issue: https://github.com/jdtsmith/indent-bars/issues/8
I tested this with 'emacs -Q' only enabling the needed packages (compat
and indent-bars).


In GNU Emacs 30.0.50 (build 12, x86_64-pc-linux-gnu, GTK+ Version
 3.24.38, cairo version 1.17.8) of 2023-08-03 built on
 felix-lifebooka531
Repository revision: 588a0363d9a3ce6d678618ad545f7a8f9af27880
Repository branch: makepkg
System Description: Arch Linux

Configured using:
 'configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib
 --localstatedir=/var --mandir=/usr/share/man --with-gameuser=:games
 --with-modules --without-libotf --without-m17n-flt --without-gconf
 --enable-link-time-optimization --with-native-compilation=yes
 --with-xinput2 --with-pgtk --without-xaw3d --with-cairo-xcb
 --with-sound=no --with-xwidgets --with-tree-sitter --without-gpm
 --without-compress-install
 '--program-transform-name=s/\([ec]tags\)/\1.emacs/'
 'CFLAGS=-march=native -mtune=generic -O3 -pipe -fno-plt -fexceptions
 -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security
 -fstack-clash-protection -fcf-protection'
 LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now'

Configured features:
ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG JSON
LCMS2 LIBSYSTEMD LIBXML2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PGTK
PNG RSVG SECCOMP SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS TREE_SITTER
WEBP XIM XWIDGETS GTK3 ZLIB

Important settings:
  value of $LANG: de_DE.UTF-8
  locale-coding-system: utf-8






^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: Simple example to reproduce.
  2023-08-03 16:07 bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Felix
@ 2023-08-03 17:20 ` Felix
  2023-08-04  0:37 ` bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 0 replies; 14+ messages in thread
From: Felix @ 2023-08-03 17:20 UTC (permalink / raw)
  To: 65042


The following code should visualize the problem.


(font-lock-mode -1)
(set-frame-parameter (selected-frame) 'alpha-background 50)
(let* ((w (window-font-width))
       (stipple `(,w 1 ,(apply #'unibyte-string
			       (append (make-list (1- (/ (+ w 7) 8)) ?\0)
				       '(1))))))
  (insert "\n" (propertize (concat  (make-string 15 ?\s)
				    "THIS IS A TEST"
				    (make-string 15 ?\s))
                           'face `(:foreground "blue" :stipple ,stipple))))





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-03 16:07 bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Felix
  2023-08-03 17:20 ` bug#65042: Simple example to reproduce Felix
@ 2023-08-04  0:37 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-04  1:32   ` Felix
  1 sibling, 1 reply; 14+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-04  0:37 UTC (permalink / raw)
  To: Felix; +Cc: 65042

Felix <felix.dick@web.de> writes:

> The background of stipple stays opaque with alpha-background parameter
> set for transparency.
> This came up in the use of the new package 'indent-bars'.
> The github issue: https://github.com/jdtsmith/indent-bars/issues/8
> I tested this with 'emacs -Q' only enabling the needed packages (compat
> and indent-bars).

Thanks.  Do stipples start displaying adequately with this change?

diff --git a/src/pgtkterm.c b/src/pgtkterm.c
index 9c1fc7bef4e..bc5c6209d42 100644
--- a/src/pgtkterm.c
+++ b/src/pgtkterm.c
@@ -1328,14 +1328,16 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
 			 int width, int height)
 {
   cairo_t *cr = pgtk_begin_cr_clip (f);
+  double r, g, b, a;
 
   cairo_rectangle (cr, x, y, width, height);
   cairo_clip (cr);
 
-  double r = ((face->background >> 16) & 0xff) / 255.0;
-  double g = ((face->background >> 8) & 0xff) / 255.0;
-  double b = ((face->background >> 0) & 0xff) / 255.0;
-  cairo_set_source_rgb (cr, r, g, b);
+  r = ((face->background >> 16) & 0xff) / 255.0;
+  g = ((face->background >> 8) & 0xff) / 255.0;
+  b = ((face->background >> 0) & 0xff) / 255.0;
+  a = f->alpha_background;
+  cairo_set_source_rgba (cr, r, g, b, a);
   cairo_paint (cr);
 
   if (face->stipple != 0)
@@ -1343,10 +1345,10 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
       cairo_pattern_t *mask
 	= FRAME_DISPLAY_INFO (f)->bitmaps[face->stipple - 1].pattern;
 
-      double r = ((face->foreground >> 16) & 0xff) / 255.0;
-      double g = ((face->foreground >> 8) & 0xff) / 255.0;
-      double b = ((face->foreground >> 0) & 0xff) / 255.0;
-      cairo_set_source_rgb (cr, r, g, b);
+      r = ((face->foreground >> 16) & 0xff) / 255.0;
+      g = ((face->foreground >> 8) & 0xff) / 255.0;
+      b = ((face->foreground >> 0) & 0xff) / 255.0;
+      cairo_set_source_rgba (cr, r, g, b, a);
       cairo_mask (cr, mask);
     }
 





^ permalink raw reply related	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-04  0:37 ` bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-04  1:32   ` Felix
  2023-08-04  1:52     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 14+ messages in thread
From: Felix @ 2023-08-04  1:32 UTC (permalink / raw)
  To: Po Lu; +Cc: 65042


Po Lu <luangruo@yahoo.com> writes:

> Felix <felix.dick@web.de> writes:
>
>> The background of stipple stays opaque with alpha-background parameter
>> set for transparency.
>> This came up in the use of the new package 'indent-bars'.
>> The github issue: https://github.com/jdtsmith/indent-bars/issues/8
>> I tested this with 'emacs -Q' only enabling the needed packages (compat
>> and indent-bars).
>
> Thanks.  Do stipples start displaying adequately with this change?
>
No it doesn't.
But it gives weird artifacts (doubling the character one
line above or something like that)





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-04  1:32   ` Felix
@ 2023-08-04  1:52     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-04 12:43       ` Felix
  0 siblings, 1 reply; 14+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-04  1:52 UTC (permalink / raw)
  To: Felix; +Cc: 65042

Felix <felix.dick@web.de> writes:

> Po Lu <luangruo@yahoo.com> writes:
>
>> Felix <felix.dick@web.de> writes:
>>
>>> The background of stipple stays opaque with alpha-background parameter
>>> set for transparency.
>>> This came up in the use of the new package 'indent-bars'.
>>> The github issue: https://github.com/jdtsmith/indent-bars/issues/8
>>> I tested this with 'emacs -Q' only enabling the needed packages (compat
>>> and indent-bars).
>>
>> Thanks.  Do stipples start displaying adequately with this change?
>>
> No it doesn't.
> But it gives weird artifacts (doubling the character one
> line above or something like that)

How about this?

diff --git a/src/pgtkterm.c b/src/pgtkterm.c
index 9c1fc7bef4e..a7c687d811d 100644
--- a/src/pgtkterm.c
+++ b/src/pgtkterm.c
@@ -1328,14 +1328,17 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
 			 int width, int height)
 {
   cairo_t *cr = pgtk_begin_cr_clip (f);
+  double r, g, b, a;
 
+  cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
   cairo_rectangle (cr, x, y, width, height);
   cairo_clip (cr);
 
-  double r = ((face->background >> 16) & 0xff) / 255.0;
-  double g = ((face->background >> 8) & 0xff) / 255.0;
-  double b = ((face->background >> 0) & 0xff) / 255.0;
-  cairo_set_source_rgb (cr, r, g, b);
+  r = ((face->background >> 16) & 0xff) / 255.0;
+  g = ((face->background >> 8) & 0xff) / 255.0;
+  b = ((face->background >> 0) & 0xff) / 255.0;
+  a = f->alpha_background;
+  cairo_set_source_rgba (cr, r, g, b, a);
   cairo_paint (cr);
 
   if (face->stipple != 0)
@@ -1343,10 +1346,10 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
       cairo_pattern_t *mask
 	= FRAME_DISPLAY_INFO (f)->bitmaps[face->stipple - 1].pattern;
 
-      double r = ((face->foreground >> 16) & 0xff) / 255.0;
-      double g = ((face->foreground >> 8) & 0xff) / 255.0;
-      double b = ((face->foreground >> 0) & 0xff) / 255.0;
-      cairo_set_source_rgb (cr, r, g, b);
+      r = ((face->foreground >> 16) & 0xff) / 255.0;
+      g = ((face->foreground >> 8) & 0xff) / 255.0;
+      b = ((face->foreground >> 0) & 0xff) / 255.0;
+      cairo_set_source_rgba (cr, r, g, b, a);
       cairo_mask (cr, mask);
     }
 





^ permalink raw reply related	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-04  1:52     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-04 12:43       ` Felix
  2023-08-04 13:28         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 14+ messages in thread
From: Felix @ 2023-08-04 12:43 UTC (permalink / raw)
  To: Po Lu; +Cc: 65042


Po Lu <luangruo@yahoo.com> writes:

> Felix <felix.dick@web.de> writes:
>
>> Po Lu <luangruo@yahoo.com> writes:
>>
>>> Felix <felix.dick@web.de> writes:
>>>
>>>> The background of stipple stays opaque with alpha-background parameter
>>>> set for transparency.
>>>> This came up in the use of the new package 'indent-bars'.
>>>> The github issue: https://github.com/jdtsmith/indent-bars/issues/8
>>>> I tested this with 'emacs -Q' only enabling the needed packages (compat
>>>> and indent-bars).
>>>
>>> Thanks.  Do stipples start displaying adequately with this change?
>>>
>> No it doesn't.
>> But it gives weird artifacts (doubling the character one
>> line above or something like that)
>
> How about this?
>
> diff --git a/src/pgtkterm.c b/src/pgtkterm.c
> index 9c1fc7bef4e..a7c687d811d 100644
> --- a/src/pgtkterm.c
> +++ b/src/pgtkterm.c
> @@ -1328,14 +1328,17 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
>  			 int width, int height)
>  {
>    cairo_t *cr = pgtk_begin_cr_clip (f);
> +  double r, g, b, a;
>
> +  cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
>    cairo_rectangle (cr, x, y, width, height);
>    cairo_clip (cr);
>
> -  double r = ((face->background >> 16) & 0xff) / 255.0;
> -  double g = ((face->background >> 8) & 0xff) / 255.0;
> -  double b = ((face->background >> 0) & 0xff) / 255.0;
> -  cairo_set_source_rgb (cr, r, g, b);
> +  r = ((face->background >> 16) & 0xff) / 255.0;
> +  g = ((face->background >> 8) & 0xff) / 255.0;
> +  b = ((face->background >> 0) & 0xff) / 255.0;
> +  a = f->alpha_background;
> +  cairo_set_source_rgba (cr, r, g, b, a);
>    cairo_paint (cr);
>
>    if (face->stipple != 0)
> @@ -1343,10 +1346,10 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
>        cairo_pattern_t *mask
>  	= FRAME_DISPLAY_INFO (f)->bitmaps[face->stipple - 1].pattern;
>
> -      double r = ((face->foreground >> 16) & 0xff) / 255.0;
> -      double g = ((face->foreground >> 8) & 0xff) / 255.0;
> -      double b = ((face->foreground >> 0) & 0xff) / 255.0;
> -      cairo_set_source_rgb (cr, r, g, b);
> +      r = ((face->foreground >> 16) & 0xff) / 255.0;
> +      g = ((face->foreground >> 8) & 0xff) / 255.0;
> +      b = ((face->foreground >> 0) & 0xff) / 255.0;
> +      cairo_set_source_rgba (cr, r, g, b, a);
>        cairo_mask (cr, mask);
>      }
>

This time it works,
Thanks for this, and thanks your work on Emacs in general!





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-04 12:43       ` Felix
@ 2023-08-04 13:28         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-04 14:05           ` Eli Zaretskii
  0 siblings, 1 reply; 14+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-04 13:28 UTC (permalink / raw)
  To: Felix; +Cc: Eli Zaretskii, 65042

Felix <felix.dick@web.de> writes:

> Po Lu <luangruo@yahoo.com> writes:
>
>> Felix <felix.dick@web.de> writes:
>>
>>> Po Lu <luangruo@yahoo.com> writes:
>>>
>>>> Felix <felix.dick@web.de> writes:
>>>>
>>>>> The background of stipple stays opaque with alpha-background parameter
>>>>> set for transparency.
>>>>> This came up in the use of the new package 'indent-bars'.
>>>>> The github issue: https://github.com/jdtsmith/indent-bars/issues/8
>>>>> I tested this with 'emacs -Q' only enabling the needed packages (compat
>>>>> and indent-bars).
>>>>
>>>> Thanks.  Do stipples start displaying adequately with this change?
>>>>
>>> No it doesn't.
>>> But it gives weird artifacts (doubling the character one
>>> line above or something like that)
>>
>> How about this?
>>
>> diff --git a/src/pgtkterm.c b/src/pgtkterm.c
>> index 9c1fc7bef4e..a7c687d811d 100644
>> --- a/src/pgtkterm.c
>> +++ b/src/pgtkterm.c
>> @@ -1328,14 +1328,17 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
>>  			 int width, int height)
>>  {
>>    cairo_t *cr = pgtk_begin_cr_clip (f);
>> +  double r, g, b, a;
>>
>> +  cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
>>    cairo_rectangle (cr, x, y, width, height);
>>    cairo_clip (cr);
>>
>> -  double r = ((face->background >> 16) & 0xff) / 255.0;
>> -  double g = ((face->background >> 8) & 0xff) / 255.0;
>> -  double b = ((face->background >> 0) & 0xff) / 255.0;
>> -  cairo_set_source_rgb (cr, r, g, b);
>> +  r = ((face->background >> 16) & 0xff) / 255.0;
>> +  g = ((face->background >> 8) & 0xff) / 255.0;
>> +  b = ((face->background >> 0) & 0xff) / 255.0;
>> +  a = f->alpha_background;
>> +  cairo_set_source_rgba (cr, r, g, b, a);
>>    cairo_paint (cr);
>>
>>    if (face->stipple != 0)
>> @@ -1343,10 +1346,10 @@ fill_background_by_face (struct frame *f, struct face *face, int x, int y,
>>        cairo_pattern_t *mask
>>  	= FRAME_DISPLAY_INFO (f)->bitmaps[face->stipple - 1].pattern;
>>
>> -      double r = ((face->foreground >> 16) & 0xff) / 255.0;
>> -      double g = ((face->foreground >> 8) & 0xff) / 255.0;
>> -      double b = ((face->foreground >> 0) & 0xff) / 255.0;
>> -      cairo_set_source_rgb (cr, r, g, b);
>> +      r = ((face->foreground >> 16) & 0xff) / 255.0;
>> +      g = ((face->foreground >> 8) & 0xff) / 255.0;
>> +      b = ((face->foreground >> 0) & 0xff) / 255.0;
>> +      cairo_set_source_rgba (cr, r, g, b, a);
>>        cairo_mask (cr, mask);
>>      }
>>
>
> This time it works,
> Thanks for this, and thanks your work on Emacs in general!

OK, thanks.  Eli, should this reach Emacs 29.2, or is it too involved
for the release branch?





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-04 13:28         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-04 14:05           ` Eli Zaretskii
  2023-08-07 18:00             ` Felix
  0 siblings, 1 reply; 14+ messages in thread
From: Eli Zaretskii @ 2023-08-04 14:05 UTC (permalink / raw)
  To: Po Lu; +Cc: 65042, felix.dick

> From: Po Lu <luangruo@yahoo.com>
> Cc: 65042@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>
> Date: Fri, 04 Aug 2023 21:28:50 +0800
> 
> Felix <felix.dick@web.de> writes:
> 
> > This time it works,
> > Thanks for this, and thanks your work on Emacs in general!
> 
> OK, thanks.  Eli, should this reach Emacs 29.2, or is it too involved
> for the release branch?

This is okay for the release branch, thanks.





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-04 14:05           ` Eli Zaretskii
@ 2023-08-07 18:00             ` Felix
  2023-08-08  1:00               ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 14+ messages in thread
From: Felix @ 2023-08-07 18:00 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Po Lu, 65042


Eli Zaretskii <eliz@gnu.org> writes:

>> From: Po Lu <luangruo@yahoo.com>
>> Cc: 65042@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>
>> Date: Fri, 04 Aug 2023 21:28:50 +0800
>>
>> Felix <felix.dick@web.de> writes:
>>
>> > This time it works,
>> > Thanks for this, and thanks your work on Emacs in general!
>>
>> OK, thanks.  Eli, should this reach Emacs 29.2, or is it too involved
>> for the release branch?
>
> This is okay for the release branch, thanks.

Friendly reminding ping.





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-07 18:00             ` Felix
@ 2023-08-08  1:00               ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-09-03 11:05                 ` Stefan Kangas
  0 siblings, 1 reply; 14+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-08  1:00 UTC (permalink / raw)
  To: Felix; +Cc: Eli Zaretskii, 65042

Felix <felix.dick@web.de> writes:

> Eli Zaretskii <eliz@gnu.org> writes:
>
>>> From: Po Lu <luangruo@yahoo.com>
>>> Cc: 65042@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>
>>> Date: Fri, 04 Aug 2023 21:28:50 +0800
>>>
>>> Felix <felix.dick@web.de> writes:
>>>
>>> > This time it works,
>>> > Thanks for this, and thanks your work on Emacs in general!
>>>
>>> OK, thanks.  Eli, should this reach Emacs 29.2, or is it too involved
>>> for the release branch?
>>
>> This is okay for the release branch, thanks.
>
> Friendly reminding ping.

I apologize for neglecting this; it will be installed on the Emacs 29
branch shortly, though you may have to wait several days for that change
to reach master.





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-08-08  1:00               ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-09-03 11:05                 ` Stefan Kangas
  2023-09-03 12:07                   ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Kangas @ 2023-09-03 11:05 UTC (permalink / raw)
  To: Po Lu; +Cc: Eli Zaretskii, 65042, Felix

Po Lu <luangruo@yahoo.com> writes:

> Felix <felix.dick@web.de> writes:
>
>> Eli Zaretskii <eliz@gnu.org> writes:
>>
>>>> From: Po Lu <luangruo@yahoo.com>
>>>> Cc: 65042@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>
>>>> Date: Fri, 04 Aug 2023 21:28:50 +0800
>>>>
>>>> Felix <felix.dick@web.de> writes:
>>>>
>>>> > This time it works,
>>>> > Thanks for this, and thanks your work on Emacs in general!
>>>>
>>>> OK, thanks.  Eli, should this reach Emacs 29.2, or is it too involved
>>>> for the release branch?
>>>
>>> This is okay for the release branch, thanks.
>>
>> Friendly reminding ping.
>
> I apologize for neglecting this; it will be installed on the Emacs 29
> branch shortly, though you may have to wait several days for that change
> to reach master.

So this has been fixed?  Should the bug be closed?

Thanks.





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-09-03 11:05                 ` Stefan Kangas
@ 2023-09-03 12:07                   ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-09-03 12:39                     ` Felix
  0 siblings, 1 reply; 14+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-09-03 12:07 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: Eli Zaretskii, 65042, Felix

Stefan Kangas <stefankangas@gmail.com> writes:

> So this has been fixed?  Should the bug be closed?

Yes, all that remains is for Felix to reply.





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-09-03 12:07                   ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-09-03 12:39                     ` Felix
  2023-09-03 12:51                       ` Stefan Kangas
  0 siblings, 1 reply; 14+ messages in thread
From: Felix @ 2023-09-03 12:39 UTC (permalink / raw)
  To: Po Lu; +Cc: Eli Zaretskii, 65042, Stefan Kangas


Po Lu <luangruo@yahoo.com> writes:

> Stefan Kangas <stefankangas@gmail.com> writes:
>
>> So this has been fixed?  Should the bug be closed?
>
> Yes, all that remains is for Felix to reply.

I didn't know that a reply is needed, sorry.
It's fixed and can be closed, thanks.





^ permalink raw reply	[flat|nested] 14+ messages in thread

* bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk
  2023-09-03 12:39                     ` Felix
@ 2023-09-03 12:51                       ` Stefan Kangas
  0 siblings, 0 replies; 14+ messages in thread
From: Stefan Kangas @ 2023-09-03 12:51 UTC (permalink / raw)
  To: Felix, Po Lu; +Cc: Eli Zaretskii, 65042-done

Felix <felix.dick@web.de> writes:

> Po Lu <luangruo@yahoo.com> writes:
>
>> Stefan Kangas <stefankangas@gmail.com> writes:
>>
>>> So this has been fixed?  Should the bug be closed?
>>
>> Yes, all that remains is for Felix to reply.
>
> I didn't know that a reply is needed, sorry.
> It's fixed and can be closed, thanks.

Thanks, closed.





^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-09-03 12:51 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-03 16:07 bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Felix
2023-08-03 17:20 ` bug#65042: Simple example to reproduce Felix
2023-08-04  0:37 ` bug#65042: 30.0.50; alpha-background doesn't effect background of stipple in emacs 30.0.50 pgtk Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-04  1:32   ` Felix
2023-08-04  1:52     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-04 12:43       ` Felix
2023-08-04 13:28         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-04 14:05           ` Eli Zaretskii
2023-08-07 18:00             ` Felix
2023-08-08  1:00               ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-09-03 11:05                 ` Stefan Kangas
2023-09-03 12:07                   ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-09-03 12:39                     ` Felix
2023-09-03 12:51                       ` Stefan Kangas

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).