From: Markus Heidelberg Date: Mon, 19 Jan 2009 23:41:18 +0000 (+0100) Subject: contrib/difftool: remove distracting 'echo' in the SIGINT handler X-Git-Tag: v1.6.2-rc0~119 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bc08fc4e850794c76da367bb628e508e6d41b1eb;p=git.git 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 --- diff --git a/contrib/difftool/git-difftool-helper b/contrib/difftool/git-difftool-helper index a2eb59b0f..0c48506ee 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 }