GNU bug report logs - #34535
27.0.50; emacs -nw: while-no-input + sit-for + <KEY> => Quit

Previous Next

Package: emacs;

Reported by: Michael Heerdegen <michael_heerdegen <at> web.de>

Date: Mon, 18 Feb 2019 22:30:02 UTC

Severity: normal

Found in version 27.0.50

Done: Eli Zaretskii <eliz <at> gnu.org>

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 34535 in the body.
You can then email your comments to 34535 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#34535; Package emacs. (Mon, 18 Feb 2019 22:30:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Michael Heerdegen <michael_heerdegen <at> web.de>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Mon, 18 Feb 2019 22:30:02 GMT) Full text and rfc822 format available.

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

From: Michael Heerdegen <michael_heerdegen <at> web.de>
To: bug-gnu-emacs <at> gnu.org
Subject: 27.0.50; emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Mon, 18 Feb 2019 23:29:04 +0100
Hello,

in emacs -nw -Q eval in any way

  (while-no-input (sit-for 20))

and hit any key before the sit-for terminates.  This always gives me a
Quit.  That should not happen.

FWIW I think I got rare quits in a similar situation also in graphical
Emacs, but I'm not sure if it's the same issue.


TIA,

Michael.


In GNU Emacs 27.0.50 (build 59, x86_64-pc-linux-gnu, GTK+ Version 3.24.5)
 of 2019-02-16 built on drachen
Repository revision: 5cae45273f019ed93c59c1b9b4655328ce2a0571
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12003000
System Description: Debian GNU/Linux buster/sid





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Fri, 22 Feb 2019 16:10:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Michael Heerdegen <michael_heerdegen <at> web.de>,
 Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Fri, 22 Feb 2019 18:08:58 +0200
> From: Michael Heerdegen <michael_heerdegen <at> web.de>
> Date: Mon, 18 Feb 2019 23:29:04 +0100
> 
> in emacs -nw -Q eval in any way
> 
>   (while-no-input (sit-for 20))
> 
> and hit any key before the sit-for terminates.  This always gives me a
> Quit.  That should not happen.

On the emacs-26 branch, we have bug#31692, so this cannot work
correctly there.  That bug is fixed on master, though.

What happens on master is this: when sit-for is called inside
while-no-input on a TTY, it returns the cons cell (t . ?\C-g), which
then causes keyboard quit right after while-no-input returns.

The below seems to fix the problem, but I hope you also have a more
complex real-life use case, because I'm not really sure this solution
has no adverse effects elsewhere.

Stefan, any thoughts?

diff --git a/src/keyboard.c b/src/keyboard.c
index 1d67c3e..4448e2b 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -2551,7 +2551,10 @@ read_char (int commandflag, Lisp_Object map,
       restore_getcjmp (save_jump);
       pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
       unbind_to (jmpcount, Qnil);
-      XSETINT (c, quit_char);
+      /* If we are in while-no-input, don't trigger C-g, as that will
+	 quit instead of letting while-no-input do its thing.  */
+      if (!EQ (Vquit_flag, Vthrow_on_input))
+	XSETINT (c, quit_char);
       internal_last_event_frame = selected_frame;
       Vlast_event_frame = internal_last_event_frame;
       /* If we report the quit char as an event,




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Fri, 22 Feb 2019 20:10:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: michael_heerdegen <at> web.de, monnier <at> iro.umontreal.ca
Cc: 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Fri, 22 Feb 2019 22:09:29 +0200
> Date: Fri, 22 Feb 2019 18:08:58 +0200
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: 34535 <at> debbugs.gnu.org
> 
> What happens on master is this: when sit-for is called inside
> while-no-input on a TTY, it returns the cons cell (t . ?\C-g), which
> then causes keyboard quit right after while-no-input returns.

I forgot to tell that sit-fore returns that cons cell because
read-event returns ?\C-g, regardless of what you type, when it is
called inside while-no-input.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Fri, 22 Feb 2019 20:27:02 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: michael_heerdegen <at> web.de, monnier <at> iro.umontreal.ca
Cc: 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Fri, 22 Feb 2019 22:25:56 +0200
> Date: Fri, 22 Feb 2019 22:09:29 +0200
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: 34535 <at> debbugs.gnu.org
> 
> > Date: Fri, 22 Feb 2019 18:08:58 +0200
> > From: Eli Zaretskii <eliz <at> gnu.org>
> > Cc: 34535 <at> debbugs.gnu.org
> > 
> > What happens on master is this: when sit-for is called inside
> > while-no-input on a TTY, it returns the cons cell (t . ?\C-g), which
> > then causes keyboard quit right after while-no-input returns.
> 
> I forgot to tell that sit-fore returns that cons cell because
> read-event returns ?\C-g, regardless of what you type, when it is
> called inside while-no-input.

To be even more accurate: sit-for pushes that cons cell onto
unread-command-events, and then the command loop reads it and triggers
keyboard quit.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Sat, 23 Feb 2019 04:28:02 GMT) Full text and rfc822 format available.

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

From: Michael Heerdegen <michael_heerdegen <at> web.de>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Stefan Monnier <monnier <at> iro.umontreal.ca>, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Sat, 23 Feb 2019 05:27:36 +0100
[Message part 1 (text/plain, inline)]
Eli Zaretskii <eliz <at> gnu.org> writes:

> The below seems to fix the problem, but I hope you also have a more
> complex real-life use case, because I'm not really sure this solution
> has no adverse effects elsewhere.

My use case was like this:

[test.el (application/emacs-lisp, inline)]
[Message part 3 (text/plain, inline)]
This seems fixed for me with your patch.

In real real life, I made it so that while-no-input only covers the
computation needed for the minibuffer hint (counting matches) which must
be interruptible, but not the sit-for used to delay the minibuffer hint
being removed.  That sit-for was inside while-no-input originally was a
matter of laziness, I was able to rewrite it to circumvent the issue.


Thanks,

Michael.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Sat, 23 Feb 2019 08:22:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Michael Heerdegen <michael_heerdegen <at> web.de>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Sat, 23 Feb 2019 10:21:20 +0200
> From: Michael Heerdegen <michael_heerdegen <at> web.de>
> Cc: Stefan Monnier <monnier <at> iro.umontreal.ca>,  34535 <at> debbugs.gnu.org
> Date: Sat, 23 Feb 2019 05:27:36 +0100
> 
> This seems fixed for me with your patch.

Thanks for testing.  I'll push the change in a few days, if nothing
pops up to the contrary.

> In real real life, I made it so that while-no-input only covers the
> computation needed for the minibuffer hint (counting matches) which must
> be interruptible, but not the sit-for used to delay the minibuffer hint
> being removed.  That sit-for was inside while-no-input originally was a
> matter of laziness, I was able to rewrite it to circumvent the issue.

Please note that using while-no-input with BODY that reads some input
in a way causes indeterminate results, because whether the arriving
input will be read and consumed by BODY and/or used to throw control
flow out of BODY, depends on seemingly random factors, like whether
Emacs checks quit-flag before or after BODY consumes the input and
acts upon it.

For example, in your test case:

  (while-no-input (sit-for 20))

there's a conceptual difficulty in deciding whether pressing a key
during the 20-sec wait should return nil or t.  On the one hand,
arriving input should end BODY and return t, but OTOH that same input
causes sit-for to stop waiting, so BODY finishes, and while-no-input
should return what sit-for returned, i.e. nil.  What actually happens
depends on the underlying implementation, which is sometimes
platform-dependent, and on what a more complex BODY does.

IOW, I think while-no-input does not (and cannot) reliably produce
deterministic output in the case where BODY itself reads input.  We
try to DTRT, but there can be no general guarantees in these cases.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Sat, 23 Feb 2019 15:14:02 GMT) Full text and rfc822 format available.

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

From: Stefan Monnier <monnier <at> IRO.UMontreal.CA>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Michael Heerdegen <michael_heerdegen <at> web.de>, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Sat, 23 Feb 2019 10:13:21 -0500
> IOW, I think while-no-input does not (and cannot) reliably produce
> deterministic output in the case where BODY itself reads input.  We
> try to DTRT, but there can be no general guarantees in these cases.

Thanks, Eli.  Indeed, "TRT" is not even clear here.
Some things are clearly not right, but if we look a bit further it
quickly gets murky.

Regarding your patch.  I'm not sure it's "TRT" but given the murky/messy
context it looks good to me.  Hopefully at some point someone can sit
down and think through the whole way we handle "quit" and try to clean
it up.


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Sat, 23 Feb 2019 16:55:02 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Stefan Monnier <monnier <at> IRO.UMontreal.CA>
Cc: michael_heerdegen <at> web.de, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Sat, 23 Feb 2019 18:54:11 +0200
> From: Stefan Monnier <monnier <at> IRO.UMontreal.CA>
> Cc: Michael Heerdegen <michael_heerdegen <at> web.de>, 34535 <at> debbugs.gnu.org
> Date: Sat, 23 Feb 2019 10:13:21 -0500
> 
> Regarding your patch.  I'm not sure it's "TRT" but given the murky/messy
> context it looks good to me.  Hopefully at some point someone can sit
> down and think through the whole way we handle "quit" and try to clean
> it up.

OK, thanks for the feedback.  I will wait a few days before pushing.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Sun, 24 Feb 2019 07:18:02 GMT) Full text and rfc822 format available.

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

From: Michael Heerdegen <michael_heerdegen <at> web.de>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Sun, 24 Feb 2019 08:16:51 +0100
Eli Zaretskii <eliz <at> gnu.org> writes:

> Please note that using while-no-input with BODY that reads some input
> in a way causes indeterminate results, because whether the arriving
> input will be read and consumed by BODY and/or used to throw control
> flow out of BODY, depends on seemingly random factors, like whether
> Emacs checks quit-flag before or after BODY consumes the input and
> acts upon it.

I hope this is not the case in my code.  In the w-n-i BODY I perform a
computation, but as in the skeleton I posted, the BODY itself doesn't
read input.  The w-n-i with the computation is done in a function in
'minibuffer-setup-hook'.  Is that allowed?


Thanks,

Michael.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Sun, 24 Feb 2019 16:08:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Michael Heerdegen <michael_heerdegen <at> web.de>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Sun, 24 Feb 2019 18:06:57 +0200
> From: Michael Heerdegen <michael_heerdegen <at> web.de>
> Cc: monnier <at> iro.umontreal.ca,  34535 <at> debbugs.gnu.org
> Date: Sun, 24 Feb 2019 08:16:51 +0100
> 
> Eli Zaretskii <eliz <at> gnu.org> writes:
> 
> > Please note that using while-no-input with BODY that reads some input
> > in a way causes indeterminate results, because whether the arriving
> > input will be read and consumed by BODY and/or used to throw control
> > flow out of BODY, depends on seemingly random factors, like whether
> > Emacs checks quit-flag before or after BODY consumes the input and
> > acts upon it.
> 
> I hope this is not the case in my code.  In the w-n-i BODY I perform a
> computation, but as in the skeleton I posted, the BODY itself doesn't
> read input.  The w-n-i with the computation is done in a function in
> 'minibuffer-setup-hook'.  Is that allowed?

Your description indicates that in your case BODY doesn't by itself
read input, so you should be OK, I think.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Mon, 25 Feb 2019 07:10:02 GMT) Full text and rfc822 format available.

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

From: Michael Heerdegen <michael_heerdegen <at> web.de>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Mon, 25 Feb 2019 08:09:27 +0100
Eli Zaretskii <eliz <at> gnu.org> writes:

> Thanks for testing.  I'll push the change in a few days, if nothing
> pops up to the contrary.

Dunno if this is related, but I think it started happening at the time I
installed your patch: When I wake up my Laptop from suspend-to-ram,
Emacs uses 100% CPU and it's hard to interrupt it (C-g doesn't help).  I
sent a SIGUSR2 and got this backtrace:

Debugger entered--entering a function:
* command-error-default-function((quit) "" nil)

Michael.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Mon, 25 Feb 2019 15:34:02 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Michael Heerdegen <michael_heerdegen <at> web.de>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Mon, 25 Feb 2019 17:33:12 +0200
> From: Michael Heerdegen <michael_heerdegen <at> web.de>
> Cc: monnier <at> iro.umontreal.ca,  34535 <at> debbugs.gnu.org
> Date: Mon, 25 Feb 2019 08:09:27 +0100
> 
> Eli Zaretskii <eliz <at> gnu.org> writes:
> 
> > Thanks for testing.  I'll push the change in a few days, if nothing
> > pops up to the contrary.
> 
> Dunno if this is related, but I think it started happening at the time I
> installed your patch: When I wake up my Laptop from suspend-to-ram,
> Emacs uses 100% CPU and it's hard to interrupt it (C-g doesn't
> help).

The only way to be sure is to back out the patch and see if these
problems go away.

> I sent a SIGUSR2 and got this backtrace:
> 
> Debugger entered--entering a function:
> * command-error-default-function((quit) "" nil)

This isn't informative enough, I need a C-level backtrace plus a full
Lisp backtrace.  Please next time attach a debugger when this happens,
source Emacs's src/.gdbinit, and type "thread apply all bt" at GDB
prompt.

Also, I don't think I understand how you got the above Lisp backtrace:
by default SIGUSR2 does nothing.  Do you have some handler for it? if
so, what does it do?

Thanks.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Tue, 26 Feb 2019 09:57:01 GMT) Full text and rfc822 format available.

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

From: Michael Heerdegen <michael_heerdegen <at> web.de>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Tue, 26 Feb 2019 10:56:06 +0100
Eli Zaretskii <eliz <at> gnu.org> writes:

> This isn't informative enough, I need a C-level backtrace plus a full
> Lisp backtrace.  Please next time attach a debugger when this happens,
> source Emacs's src/.gdbinit, and type "thread apply all bt" at GDB
> prompt.

Ok, I'll do that.

> Also, I don't think I understand how you got the above Lisp backtrace:
> by default SIGUSR2 does nothing.  Do you have some handler for it? if
> so, what does it do?

No, I only use the default behavior:

 -- User Option: debug-on-event
     If you set ‘debug-on-event’ to a special event (*note Special
     Events::), Emacs will try to enter the debugger as soon as it
     receives this event, bypassing ‘special-event-map’.  At present,
     the only supported values correspond to the signals ‘SIGUSR1’ and
     ‘SIGUSR2’ (this is the default).  This can be helpful when
     ‘inhibit-quit’ is set and Emacs is not otherwise responding.

(Why do you think SIGUSR2 would do nothing?)


Michael.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Tue, 26 Feb 2019 15:27:02 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Michael Heerdegen <michael_heerdegen <at> web.de>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Tue, 26 Feb 2019 17:26:03 +0200
> From: Michael Heerdegen <michael_heerdegen <at> web.de>
> Cc: monnier <at> iro.umontreal.ca,  34535 <at> debbugs.gnu.org
> Date: Tue, 26 Feb 2019 10:56:06 +0100
> 
> (Why do you think SIGUSR2 would do nothing?)

Sorry, my bad: I looked in the wrong place to see the default binding
of the event.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Tue, 26 Feb 2019 17:28:01 GMT) Full text and rfc822 format available.

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

From: Michael Heerdegen <michael_heerdegen <at> web.de>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Tue, 26 Feb 2019 18:27:33 +0100
Michael Heerdegen <michael_heerdegen <at> web.de> writes:

> > This isn't informative enough, I need a C-level backtrace plus a full
> > Lisp backtrace.  Please next time attach a debugger when this happens,
> > source Emacs's src/.gdbinit, and type "thread apply all bt" at GDB
> > prompt.
>
> Ok, I'll do that.

This seems only to happen after several hours of suspended ram sleep.  I
just waited this time to see if it ends, and after ~10 seconds, CPU
usage went to nearly zero and everything was good.  I'm not sure if
Emacs is to blame for anything, though I didn't see this before.  When
it happens the next time, I'll have a look if other programs are
responding.

Michael.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#34535; Package emacs. (Tue, 26 Feb 2019 18:29:01 GMT) Full text and rfc822 format available.

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

From: Eli Zaretskii <eliz <at> gnu.org>
To: Michael Heerdegen <michael_heerdegen <at> web.de>
Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Tue, 26 Feb 2019 20:27:55 +0200
> From: Michael Heerdegen <michael_heerdegen <at> web.de>
> Cc: monnier <at> iro.umontreal.ca,  34535 <at> debbugs.gnu.org
> Date: Tue, 26 Feb 2019 18:27:33 +0100
> 
> This seems only to happen after several hours of suspended ram sleep.  I
> just waited this time to see if it ends, and after ~10 seconds, CPU
> usage went to nearly zero and everything was good.  I'm not sure if
> Emacs is to blame for anything, though I didn't see this before.  When
> it happens the next time, I'll have a look if other programs are
> responding.

OK, thanks.  I guess I will soon push the change after all.




Reply sent to Eli Zaretskii <eliz <at> gnu.org>:
You have taken responsibility. (Fri, 01 Mar 2019 10:22:02 GMT) Full text and rfc822 format available.

Notification sent to Michael Heerdegen <michael_heerdegen <at> web.de>:
bug acknowledged by developer. (Fri, 01 Mar 2019 10:22:02 GMT) Full text and rfc822 format available.

Message #55 received at 34535-done <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: michael_heerdegen <at> web.de
Cc: monnier <at> iro.umontreal.ca, 34535-done <at> debbugs.gnu.org
Subject: Re: bug#34535: 27.0.50;
 emacs -nw: while-no-input + sit-for + <KEY> => Quit
Date: Fri, 01 Mar 2019 12:21:08 +0200
> Date: Tue, 26 Feb 2019 20:27:55 +0200
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: monnier <at> iro.umontreal.ca, 34535 <at> debbugs.gnu.org
> 
> OK, thanks.  I guess I will soon push the change after all.

Done on the master branch.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 29 Mar 2019 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 23 days ago.

Previous Next


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