Re: [PATCH 2/5] launch_editor: ignore SIGINT while the editor has control

2012-11-12 Thread Jeff King
On Mon, Nov 12, 2012 at 09:44:49AM -0800, Junio C Hamano wrote: > How did this message happen? > > Subject: [PATCH 2/5] launch_editor: ignore SIGINT while the editor has > control > To: Kalle Olavi Niemitalo > Cc: Paul Fox , git@vger.kernel.org > Date: Sun,

Re: [PATCH 2/5] launch_editor: ignore SIGINT while the editor has control

2012-11-12 Thread Junio C Hamano
How did this message happen? Subject: [PATCH 2/5] launch_editor: ignore SIGINT while the editor has control To: Kalle Olavi Niemitalo Cc: Paul Fox , git@vger.kernel.org Date: Sun, 11 Nov 2012 11:55:11 -0500 Message-ID: <2012165510.gb19...@sigill.intra.peff.

[PATCH 2/5] launch_editor: ignore SIGINT while the editor has control

2012-11-11 Thread Paul Fox
The user's editor likely catches SIGINT (ctrl-C). but if the user spawns a command from the editor and uses ctrl-C to kill that command, the SIGINT will likely also kill git itself (depending on the editor, this can leave the terminal in an unusable state). Signed-off-by: Paul Fox Signed-off-by:

[PATCH 2/5] launch_editor: ignore SIGINT while the editor has control

2012-11-11 Thread Jeff King
From: Paul Fox The user's editor likely catches SIGINT (ctrl-C). but if the user spawns a command from the editor and uses ctrl-C to kill that command, the SIGINT will likely also kill git itself (depending on the editor, this can leave the terminal in an unusable state). Signed-off-by: Paul Fo