summaryrefslogtreecommitdiff
path: root/lib/functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/functions.zsh')
-rw-r--r--lib/functions.zsh2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/functions.zsh b/lib/functions.zsh
index 5c1a5a283..2a962669c 100644
--- a/lib/functions.zsh
+++ b/lib/functions.zsh
@@ -176,7 +176,6 @@ function omz_urldecode {
emulate -L zsh
local encoded_url=$1
- echo -e input $1
# Work bytewise, since URLs escape UTF-8 octets
local caller_encoding=$langinfo[CODESET]
local LC_ALL=C
@@ -188,7 +187,6 @@ function omz_urldecode {
tmp=${tmp:gs/\\/\\\\/}
# Handle %-escapes by turning them into `\xXX` printf escapes
tmp=${tmp:gs/%/\\x/}
- echo -E "before decode $tmp"
local decoded
eval "decoded=\$'$tmp'"