GNU bug report logs - #52666
27.0.50; Unexpected mode line flickering when creating frames

Previous Next

Package: emacs;

Reported by: Markus Triska <triska <at> metalevel.at>

Date: Sun, 19 Dec 2021 20:31:01 UTC

Severity: normal

Found in version 27.0.50

Done: Markus Triska <triska <at> metalevel.at>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 52666 in the body.
You can then email your comments to 52666 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Sun, 19 Dec 2021 20:31:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Markus Triska <triska <at> metalevel.at>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Sun, 19 Dec 2021 20:31:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Markus Triska <triska <at> metalevel.at>
To: bug-gnu-emacs <at> gnu.org
Subject: 27.0.50; Unexpected mode line flickering when creating frames
Date: Sun, 19 Dec 2021 21:42:21 +0100
Dear all,

to reproduce this issue, please put the following form in a new file
flicker.el:

    (while t
      (let ((f (make-frame `((parent-frame . ,(selected-frame))
                             (left . 200)
                             (top . 200)))))
        (set-frame-width f 200 nil t)
        (set-frame-height f 200 nil t)
        (sit-for 0.3)
        (delete-frame f)))

and then invoke Emacs with:

    $ emacs -Q -l flicker.el

The form repeatedly creates and destroys a child frame, offset 200
pixels both horizontally and vertically from the top left corner of the
frame.

Unexpectedly, the mode line flickers in many (though apparently not all)
iterations, starting at 200 pixels horizontally from the left, even
though the frame does not overlap the mode line in any way.

Ideally, the creation of the frame should not have any visible effect on
the mode line.

Could the pleasant double buffering feature I have read about help to
remove this flickering when creating child frames? Please let me know if
you can reproduce the issue or need any further information. I can
reproduce the flickering both on OSX and on Debian.

Thank you a lot!
Markus

In GNU Emacs 27.0.50 (build 1, x86_64-apple-darwin18.0.0, X toolkit, Xaw scroll bars)
 of 2018-11-15 built on mts-mac
Repository revision: b4eb908f858284a7962851fd99c94598f76afa6f
Windowing system distributor 'The X.Org Foundation', version 11.0.11804000
System Description:  Mac OS X 10.14.2


Configured using:
 'configure --prefix=/opt/local --without-ns --without-dbus
 --without-gconf --without-libotf --without-m17n-flt --without-gpm
 --with-gnutls --with-xml2 --with-modules --infodir
 /opt/local/share/info/emacs --with-json --with-x-toolkit=lucid
 --without-xaw3d --without-imagemagick --with-xpm --with-jpeg
 --with-tiff --with-gif --with-png --with-lcms2 --without-rsvg
 --with-xft 'CFLAGS=-pipe -Os
 ...

Configured features:
XPM JPEG TIFF GIF PNG NOTIFY KQUEUE ACL GNUTLS LIBXML2 FREETYPE XFT ZLIB
TOOLKIT_SCROLL_BARS LUCID X11 XDBE XIM MODULES THREADS JSON LCMS2 GMP





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Mon, 20 Dec 2021 15:15:01 GMT) Full text and rfc822 format available.

Message #8 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Markus Triska <triska <at> metalevel.at>, martin rudalics <rudalics <at> gmx.at>
Cc: 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50;
 Unexpected mode line flickering when creating frames
Date: Mon, 20 Dec 2021 17:11:22 +0200
> From: Markus Triska <triska <at> metalevel.at>
> Date: Sun, 19 Dec 2021 21:42:21 +0100
> 
>     (while t
>       (let ((f (make-frame `((parent-frame . ,(selected-frame))
>                              (left . 200)
>                              (top . 200)))))
>         (set-frame-width f 200 nil t)
>         (set-frame-height f 200 nil t)
>         (sit-for 0.3)
>         (delete-frame f)))
> 
> and then invoke Emacs with:
> 
>     $ emacs -Q -l flicker.el
> 
> The form repeatedly creates and destroys a child frame, offset 200
> pixels both horizontally and vertically from the top left corner of the
> frame.
> 
> Unexpectedly, the mode line flickers in many (though apparently not all)
> iterations, starting at 200 pixels horizontally from the left, even
> though the frame does not overlap the mode line in any way.

I think the child frame is first placed in some location determined by
the WM, and then moved to the place the code says.  Martin, is that
so?

If I'm right, then the flickering of the parent frame is when the
child frame intersects some of its elements.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Mon, 20 Dec 2021 16:48:02 GMT) Full text and rfc822 format available.

Message #11 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: martin rudalics <rudalics <at> gmx.at>
To: Markus Triska <triska <at> metalevel.at>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Mon, 20 Dec 2021 10:18:48 +0100
> to reproduce this issue, please put the following form in a new file
> flicker.el:
>
>      (while t
>        (let ((f (make-frame `((parent-frame . ,(selected-frame))
>                               (left . 200)
>                               (top . 200)))))
>          (set-frame-width f 200 nil t)
>          (set-frame-height f 200 nil t)
>          (sit-for 0.3)
>          (delete-frame f)))
>
> and then invoke Emacs with:
>
>      $ emacs -Q -l flicker.el
>
> The form repeatedly creates and destroys a child frame, offset 200
> pixels both horizontally and vertically from the top left corner of the
> frame.
>
> Unexpectedly, the mode line flickers in many (though apparently not all)
> iterations, starting at 200 pixels horizontally from the left, even
> though the frame does not overlap the mode line in any way.
>
> Ideally, the creation of the frame should not have any visible effect on
> the mode line.

I can reproduce the flickering with a GTK build where the child frame
never appears at all.  I cannot reproduce it with a Lucid build where
the child frame appears shortly and gets deleted as expected.  In either
case the mode line is redrawn because it changes from active to inactive
and back.

> Could the pleasant double buffering feature I have read about help to
> remove this flickering when creating child frames? Please let me know if
> you can reproduce the issue or need any further information. I can
> reproduce the flickering both on OSX and on Debian.

The (sit-for 0.3) might conflict with 'x-wait-for-event-timeout' so
playing around with the latter could help.  BTW is yours really a Lucid
build on a Mac?

martin




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Mon, 20 Dec 2021 17:23:01 GMT) Full text and rfc822 format available.

Message #14 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: martin rudalics <rudalics <at> gmx.at>
To: Eli Zaretskii <eliz <at> gnu.org>, Markus Triska <triska <at> metalevel.at>
Cc: 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Mon, 20 Dec 2021 18:21:50 +0100
> I think the child frame is first placed in some location determined by
> the WM, and then moved to the place the code says.  Martin, is that
> so?

Not really - the frame should be placed correctly from the outset.  The
code has two problems: Using 'set-frame-width' and 'set-frame-height'
immediately after the frame has been created is bad karma and should be
avoided at all costs.  The right approach is

(while t
  (let ((f (make-frame `((parent-frame . ,(selected-frame))
                         (left . 200)
                         (top . 200)
			 (width . 200)
			 (height . 200)))))
    (sit-for 0.3)
    (delete-frame f)))

> If I'm right, then the flickering of the parent frame is when the
> child frame intersects some of its elements.

This is the second problem: 200 x 200 is way too large for the parent
frame so the WM has to clip the child frame and where it overlaps with
the parent frame it probably induces some sort of expose event that
eventually causes the flicker.

martin




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Mon, 20 Dec 2021 18:24:01 GMT) Full text and rfc822 format available.

Message #17 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Markus Triska <triska <at> metalevel.at>
To: martin rudalics <rudalics <at> gmx.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50;
 Unexpected mode line flickering when creating frames
Date: Mon, 20 Dec 2021 19:23:22 +0100
martin rudalics <rudalics <at> gmx.at> writes:

> immediately after the frame has been created is bad karma and should be
> avoided at all costs.  The right approach is
>
> (while t
>   (let ((f (make-frame `((parent-frame . ,(selected-frame))
>                          (left . 200)
>                          (top . 200)
> 			 (width . 200)
> 			 (height . 200)))))

This seems not equivalent to what I posted: In the original snippet, I
set the width and height to 200 pixels, by specifying pixelwise as t.

In contrast, this version now sets the width and height to 200 columns
and rows, respectively, yielding a much larger frame.

> This is the second problem: 200 x 200 is way too large for the parent
> frame so the WM has to clip the child frame and where it overlaps with

On my configuration, a frame of 200x200 pixels fits well within the
parent frame at the given position, so this should not be a problem.

You can evaluate the following form in isolation to see that the frame
that is created with the original snippet fits within the parent frame:

  (let ((f (make-frame `((parent-frame . ,(selected-frame))
                         (left . 200)
                         (top . 200)))))
    (set-frame-width f 200 nil t)
    (set-frame-height f 200 nil t))

If you execute it repeatedly, you will sometimes see the flickering in
the mode line, and sometimes not. Putting this in a loop as in the
original snippet lets you easily observe the flickering.

Is there a way to set the pixelwise frame hight and width already when
the frame is created?

Thank you and all the best,
Markus





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Mon, 20 Dec 2021 18:31:01 GMT) Full text and rfc822 format available.

Message #20 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: martin rudalics <rudalics <at> gmx.at>
To: Markus Triska <triska <at> metalevel.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Mon, 20 Dec 2021 19:30:34 +0100
> Is there a way to set the pixelwise frame hight and width already when
> the frame is created?

Please try with

(while t
  (let ((f (make-frame `((parent-frame . ,(selected-frame))
                         (left . 200)
                         (top . 200)
			 (width . (text-pixels . 200))
			 (height . (text-pixels . 200))))))
        (sit-for 0.3)
        (delete-frame f)))

martin




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Mon, 20 Dec 2021 18:42:01 GMT) Full text and rfc822 format available.

Message #23 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Markus Triska <triska <at> metalevel.at>
To: martin rudalics <rudalics <at> gmx.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50;
 Unexpected mode line flickering when creating frames
Date: Mon, 20 Dec 2021 19:41:45 +0100
martin rudalics <rudalics <at> gmx.at> writes:

> Please try with
>
> (while t
>   (let ((f (make-frame `((parent-frame . ,(selected-frame))
>                          (left . 200)
>                          (top . 200)
> 			 (width . (text-pixels . 200))
> 			 (height . (text-pixels . 200))))))
>         (sit-for 0.3)
>         (delete-frame f)))

That's perfect, thank you a lot for this! With this I get no mode line
flickering at all, neither on OSX nor on Debian.

Yes, I am always using the Lucid build in all platforms, also on OSX!

Do you still observe the mode line flickering you mentioned in the Gtk
build also with this version? If not, then this solves all issues I
reported, thank you again!

All the best,
Markus




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Tue, 21 Dec 2021 10:34:02 GMT) Full text and rfc822 format available.

Message #26 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: martin rudalics <rudalics <at> gmx.at>
To: Markus Triska <triska <at> metalevel.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Tue, 21 Dec 2021 11:32:53 +0100
> Do you still observe the mode line flickering you mentioned in the Gtk
> build also with this version?

I later found out that with my GTK-3 build the child frame never became
visible with your original recipe when I moved the mouse into the area
reserved for it.  Maybe this is related to my focus follows mouse
settings maybe it's something else.

I can explain the mode line flickering as follows: This

      (let ((f (make-frame `((parent-frame . ,(selected-frame))
                             (left . 200)
                             (top . 200)))))

creates a child frame at a 200 . 200 pixels offset from the top-left
corner of the parent's native frame.  Since the size of the child frame
is by default that of its parent, the child frame will thus draw over
the entire area of the parent frame (including mode line and scroll
bars) to the right of and below that position.  Next you do

        (set-frame-width f 200 nil t)

which will expose the part of the parent frame to the right of a ~400
pixels X-position and then you do

        (set-frame-height f 200 nil t)

which will expose the part of the parent frame below a ~400 pixels
Y-position.  With all possible delays involved when setting width and
height ('x-wait-for-event-timeout' might come into play here too) such
flickering should not come as a surprise here.

martin




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Tue, 21 Dec 2021 20:45:01 GMT) Full text and rfc822 format available.

Message #29 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Markus Triska <triska <at> metalevel.at>
To: martin rudalics <rudalics <at> gmx.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50;
 Unexpected mode line flickering when creating frames
Date: Tue, 21 Dec 2021 21:44:43 +0100
martin rudalics <rudalics <at> gmx.at> writes:

> I later found out that with my GTK-3 build the child frame never became
> visible with your original recipe when I moved the mouse into the area
> reserved for it.  Maybe this is related to my focus follows mouse
> settings maybe it's something else.

I also noticed this: When the mouse is in the area where the new frame
arises, then the new frame is selected on all platforms I tried. I have
set focus-follows-mouse to nil (the default). Ideally, I would like the
existing frame to reliably retain the focus, and the new frame to not be
selected when it is created. Is there any way to reliably ensure this?

> corner of the parent's native frame.  Since the size of the child frame
> is by default that of its parent, the child frame will thus draw over
> the entire area of the parent frame (including mode line and scroll

I think this is the part that can be counterintuitive, since the Elisp
documentation states:

    39.2 Forcing Redisplay
    ======================

    Emacs normally tries to redisplay the screen whenever it waits for
    input.

In the example that exhibits the flickering, there is no waiting for
input between the creation of the frame and the change of its width and
height. Therefore, it is unexpected that the frame is drawn over the
entire area of the parent frame. I expected it to be drawn only for the
area it is configured, when Emacs waits for input.

Thank you and all the best,
Markus




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Wed, 22 Dec 2021 09:24:02 GMT) Full text and rfc822 format available.

Message #32 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: martin rudalics <rudalics <at> gmx.at>
To: Markus Triska <triska <at> metalevel.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Wed, 22 Dec 2021 10:22:57 +0100
> I also noticed this: When the mouse is in the area where the new frame
> arises, then the new frame is selected on all platforms I tried.

Are you sure that the new frame is _not_ selected when the mouse is _not_
in that area?

> I have
> set focus-follows-mouse to nil (the default). Ideally, I would like the
> existing frame to reliably retain the focus, and the new frame to not be
> selected when it is created. Is there any way to reliably ensure this?

Not in my experience.  Conceptually, it should be possible by setting
the 'no-focus-on-map' or temporarily (that is until the frame has become
visible) the 'no-accept-focus' window parameter but I haven't yet seen a
WM strictly adhering to that discipline.  It worked best on Windows XP.

>> corner of the parent's native frame.  Since the size of the child frame
>> is by default that of its parent, the child frame will thus draw over
>> the entire area of the parent frame (including mode line and scroll
>
> I think this is the part that can be counterintuitive, since the Elisp
> documentation states:
>
>      39.2 Forcing Redisplay
>      ======================
>
>      Emacs normally tries to redisplay the screen whenever it waits for
>      input.
>
> In the example that exhibits the flickering, there is no waiting for
> input between the creation of the frame and the change of its width and
> height.

Maybe that line is confusing.  Emacs may have to redisplay whenever it
receives a corresponding event (like Map, Visibility, Expose and Focus
notifications).  Waiting for user input is only a tangential aspect
there.  What that chapter tries to describe is that an application can
try to force additional redisplays by using the means described there.
Inhibiting redisplay (via setting 'inhibit-redisplay') is in general not
supported and might have no effect either.

> Therefore, it is unexpected that the frame is drawn over the
> entire area of the parent frame. I expected it to be drawn only for the
> area it is configured, when Emacs waits for input.

Emacs does not necessarily "wait for input" in that case.  Depending on
the underlying windowing system it might rather wait for a MapNotify or
ConfigureNotify event.

martin




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Wed, 22 Dec 2021 13:38:01 GMT) Full text and rfc822 format available.

Message #35 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: martin rudalics <rudalics <at> gmx.at>
Cc: triska <at> metalevel.at, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Wed, 22 Dec 2021 15:37:17 +0200
> Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
> From: martin rudalics <rudalics <at> gmx.at>
> Date: Wed, 22 Dec 2021 10:22:57 +0100
> 
>  >      39.2 Forcing Redisplay
>  >      ======================
>  >
>  >      Emacs normally tries to redisplay the screen whenever it waits for
>  >      input.
>  >
>  > In the example that exhibits the flickering, there is no waiting for
>  > input between the creation of the frame and the change of its width and
>  > height.
> 
> Maybe that line is confusing.

Not really.  It says "normally", and that is accurate.  There are
other situations where Emacs does redisplay, either because some Lisp
program forced it to do so, or for other reasons.

The ELisp manual has limitations if treated as documentation of the
Emacs internals -- that's not its purpose.

> Emacs may have to redisplay whenever it
> receives a corresponding event (like Map, Visibility, Expose and Focus
> notifications).  Waiting for user input is only a tangential aspect
> there.

Not entirely, or at least not always: Emacs ("normally") reads events
when it waits for input.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Wed, 22 Dec 2021 16:34:01 GMT) Full text and rfc822 format available.

Message #38 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Markus Triska <triska <at> metalevel.at>
To: martin rudalics <rudalics <at> gmx.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50;
 Unexpected mode line flickering when creating frames
Date: Wed, 22 Dec 2021 17:33:09 +0100
martin rudalics <rudalics <at> gmx.at> writes:

> Are you sure that the new frame is _not_ selected when the mouse is _not_
> in that area?

Yes, the new frame is *not* selected in that case! I have constructed
the following test case to reproduce this:

    (let ((f (make-frame `((parent-frame . ,(selected-frame))
                           (left . 200)
                           (width . (text-pixels . 200))
                           (height . (text-pixels . 200))
                           (top . 200)))))
      (eq f (selected-frame)))

When I evaluate it, and the mouse is far away from the window, I get
"nil" as the result, showing that f is not the selected frame. I get
this with the Lucid build on OSX and Debian.

In fact, also if the mouse is within the area where the new frame
appears, I still get "nil", and the new frame is not selected: The
existing frame remains the selected frame, independent of the position
of the mouse.

I previously thought that the new frame is selected, but that was
apparently mistaken: It only appeared to be selected because when
entering text, the new (smaller) frame also shows the new text, even
though it is entered in the existing frame which is selected.

For my specific use case, this behaviour is ideal: I would like to show
information in a new frame, but not select the frame. I am surprised to
hear that in your configuration, the new frame is indeed selected. Do
you accordingly get t as the result of evaluating the above form?

Thank you and all the best,
Markus




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Thu, 23 Dec 2021 14:47:02 GMT) Full text and rfc822 format available.

Message #41 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: martin rudalics <rudalics <at> gmx.at>
To: Markus Triska <triska <at> metalevel.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50; Unexpected mode line flickering when creating
 frames
Date: Thu, 23 Dec 2021 15:46:05 +0100
> For my specific use case, this behaviour is ideal: I would like to show
> information in a new frame, but not select the frame. I am surprised to
> hear that in your configuration, the new frame is indeed selected. Do
> you accordingly get t as the result of evaluating the above form?

No.  I'm getting nil here too.  And apparently the child frame gets
selected if and only if I click into it.

If all issues have been resolved, please close this bug.

Thanks, martin




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#52666; Package emacs. (Thu, 23 Dec 2021 16:24:02 GMT) Full text and rfc822 format available.

Message #44 received at 52666 <at> debbugs.gnu.org (full text, mbox):

From: Markus Triska <triska <at> metalevel.at>
To: martin rudalics <rudalics <at> gmx.at>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 52666 <at> debbugs.gnu.org
Subject: Re: bug#52666: 27.0.50;
 Unexpected mode line flickering when creating frames
Date: Thu, 23 Dec 2021 17:23:04 +0100
martin rudalics <rudalics <at> gmx.at> writes:

> No.  I'm getting nil here too.  And apparently the child frame gets
> selected if and only if I click into it.

Perfect, thank you a lot. Yes, please close this issue, it works
perfectly now with the approach you showed!

Thank you and all the best,
Markus




bug closed, send any further explanations to 52666 <at> debbugs.gnu.org and Markus Triska <triska <at> metalevel.at> Request was from Markus Triska <triska <at> metalevel.at> to control <at> debbugs.gnu.org. (Thu, 23 Dec 2021 22:07:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 21 Jan 2022 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 96 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.