In-reply-to: [off-list ref] (sfid-20121120_190548_379327_D3EE7D14)
References: [off-list ref] [off-list ref] [off-list ref] (sfid-20121120_190548_379327_D3EE7D14)
Fcc: outbox
--------
junio c hamano wrote:
> Here is a list of stalled topics I am having trouble deciding what
> to do (the default is to dismiss them around feature freeze).
...
> * pf/editor-ignore-sigint (2012-11-11) 5 commits
>
> Avoid confusing cases where the user hits Ctrl-C while in the editor
> session, not realizing git will receive the signal. Since most editors
> will take over the terminal and will block SIGINT, this is not likely
> to confuse anyone.
>
> Some people raised issues with emacsclient, which are addressed by this
> re-roll. It should probably also handle SIGQUIT, and there were a
> handful of other review comments.
>
> Anybody interested in moving this forward?
i started this, but then jeff took it and ran with it and made it
right. i think the remaining changes are small -- if jeff would
prefer, i can probably finish it. (but i won't guarantee not to
mess up the "From:" lines. :-)
paul
=---------------------
paul fox, pgf@foxharp.boston.ma.us (arlington, ma, where it's 36.0 degrees)
From: Krzysztof Mazur <hidden> Date: 2016-06-15 22:55:23
On Tue, Nov 20, 2012 at 09:46:47PM -0500, Paul Fox wrote:
junio c hamano wrote:
> Here is a list of stalled topics I am having trouble deciding what
> to do (the default is to dismiss them around feature freeze).
...
> * pf/editor-ignore-sigint (2012-11-11) 5 commits
>
> Avoid confusing cases where the user hits Ctrl-C while in the editor
> session, not realizing git will receive the signal. Since most editors
> will take over the terminal and will block SIGINT, this is not likely
> to confuse anyone.
>
> Some people raised issues with emacsclient, which are addressed by this
> re-roll. It should probably also handle SIGQUIT, and there were a
> handful of other review comments.
>
> Anybody interested in moving this forward?
i started this, but then jeff took it and ran with it and made it
right. i think the remaining changes are small -- if jeff would
prefer, i can probably finish it. (but i won't guarantee not to
mess up the "From:" lines. :-)
I'm also interested. I sometimes use ":r !command" in vim, so far I never
needed to use Ctrl-C, but maybe in future.
The SIGINT part seems to be finished, we need to decide what about SIGQUIT.
Krzysiek
From: Jeff King <hidden> Date: 2016-06-15 22:55:23
On Wed, Nov 21, 2012 at 10:27:50AM +0100, Krzysztof Mazur wrote:
quoted
> * pf/editor-ignore-sigint (2012-11-11) 5 commits
>
> Avoid confusing cases where the user hits Ctrl-C while in the editor
> session, not realizing git will receive the signal. Since most editors
> will take over the terminal and will block SIGINT, this is not likely
> to confuse anyone.
>
> Some people raised issues with emacsclient, which are addressed by this
> re-roll. It should probably also handle SIGQUIT, and there were a
> handful of other review comments.
>
> Anybody interested in moving this forward?
i started this, but then jeff took it and ran with it and made it
right. i think the remaining changes are small -- if jeff would
prefer, i can probably finish it. (but i won't guarantee not to
mess up the "From:" lines. :-)
I'm also interested. I sometimes use ":r !command" in vim, so far I never
needed to use Ctrl-C, but maybe in future.
The SIGINT part seems to be finished, we need to decide what about SIGQUIT.
My plan was to just add in SIGQUIT[1] alongside SIGINT (and I think
there may have been one or two other minor comments in response to the
series). I am on vacation this week, but can revisit it next week. If
somebody wants to re-roll it in the meantime, that would be fine with
me.
-Peff
[1] Given the core-dumping behavior of SIGQUIT, I suspect it is not
nearly as widely used as SIGINT, but it sounds more like the
principle of least surprise to treat them the same.