From 779a7b7debbbba82942dbdee591ebf05d32820eb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 4 Jan 2023 11:15:47 +0530 Subject: [PATCH] ... --- tools/utils/shell.go | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/utils/shell.go b/tools/utils/shell.go index 87d353789..e4a3ca1d7 100644 --- a/tools/utils/shell.go +++ b/tools/utils/shell.go @@ -27,7 +27,6 @@ func QuoteStringForFish(x string) string { // Escapes common shell meta characters func EscapeSHMetaCharacters(x string) string { - const metachars = "\\|&;<>()$'\" \n\t" ans := strings.Builder{} ans.Grow(len(x) + 32) for _, ch := range x {