From ebd4414c29014b5cc46a8aee87337684fbcefb9f Mon Sep 17 00:00:00 2001 From: Dominik Ritter Date: Mon, 23 Jul 2018 02:16:03 +0200 Subject: [PATCH] Fix trimming of whitespace in debug/font-issues.zsh --- debug/font-issues.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/font-issues.zsh b/debug/font-issues.zsh index e73830f0..82f8e60b 100755 --- a/debug/font-issues.zsh +++ b/debug/font-issues.zsh @@ -12,7 +12,7 @@ trim() { set -f # shellcheck disable=2048,2086 set -- $* - printf '%s\n' "${*//[[:space:]]/ }" + printf '%s\n' "${*//[[:space:]]/}" set +f }