summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Janke <andrew@apjanke.net>2015-08-09 16:37:12 -0400
committerAndrew Janke <andrew@apjanke.net>2015-08-17 20:51:41 -0400
commit96c34cebae5da3a52e7da0d61188c1f9822a9c2e (patch)
tree4eb0840a2d0609c235cec190b400f76853d2c5e0 /lib
parent14b4ba83c35c34f4a1f3a69c9967f502ee2d6528 (diff)
downloadzsh-96c34cebae5da3a52e7da0d61188c1f9822a9c2e.tar.gz
zsh-96c34cebae5da3a52e7da0d61188c1f9822a9c2e.tar.bz2
zsh-96c34cebae5da3a52e7da0d61188c1f9822a9c2e.zip
Add a deprecation comment.
Diffstat (limited to 'lib')
-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'"