From 8e17f70c53834d2c6561e8f8e8caa206f6c8483b Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 5 Nov 2019 22:55:59 +0100 Subject: [PATCH] fixup! gitk: Escape file paths before piping to git log The patch that tried to escape the paths when refreshing was missing a continuation. This led to the error message Error executing git log: wrong # args: should be "escape_filter_paths paths" This fixes https://github.com/git-for-windows/git/issues/2390 Signed-off-by: Johannes Schindelin --- gitk-git/gitk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitk-git/gitk b/gitk-git/gitk index 8f9616d35bca5d..b805ec53ed0571 100755 --- a/gitk-git/gitk +++ b/gitk-git/gitk @@ -580,7 +580,7 @@ proc updatecommits {} { set fd [open [concat | git log --no-color -z --pretty=raw $show_notes \ --parents --boundary $args --stdin \ "<<[join [concat $revs "--" \ - [escape_filter_paths + [escape_filter_paths \ $vfilelimit($view)]] "\\n"]"] r] } err]} { error_popup "[mc "Error executing git log:"] $err"