From bc08fc4e850794c76da367bb628e508e6d41b1eb Mon Sep 17 00:00:00 2001 From: Markus Heidelberg Date: Tue, 20 Jan 2009 00:41:18 +0100 Subject: [PATCH] contrib/difftool: remove distracting 'echo' in the SIGINT handler When interrupting git-difftool with Ctrl-C, the output of this echo command led to having the cursor at the beginning of the line below the shell prompt. Signed-off-by: Markus Heidelberg Signed-off-by: Junio C Hamano --- contrib/difftool/git-difftool-helper | 1 - 1 file changed, 1 deletion(-) diff --git a/contrib/difftool/git-difftool-helper b/contrib/difftool/git-difftool-helper index a2eb59b0f0..0c48506eeb 100755 --- a/contrib/difftool/git-difftool-helper +++ b/contrib/difftool/git-difftool-helper @@ -32,7 +32,6 @@ cleanup_temp_files () { # This is called when users Ctrl-C out of git-difftool-helper sigint_handler () { - echo cleanup_temp_files exit 1 } -- 2.11.4.GIT