summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorEric Cook <llua@gmx.com>2015-10-27 12:15:47 -0400
committerMikael Magnusson <mikachu@gmail.com>2015-11-16 02:58:03 +0100
commit8d1e882b78e3ccc3d66cfc61e1d7e3e53f60d67f (patch)
treea8d65bc8171d51cc98d72681a321e15ea5ebfc95 /Functions
parentf01cf05e538dc4c8839253aefc09d3a58654ba6a (diff)
downloadzsh-8d1e882b78e3ccc3d66cfc61e1d7e3e53f60d67f.tar.gz
zsh-8d1e882b78e3ccc3d66cfc61e1d7e3e53f60d67f.tar.xz
zsh-8d1e882b78e3ccc3d66cfc61e1d7e3e53f60d67f.zip
zed: Add -- to the `functions' builtin calls
Reported on IRC:

% autoload zed; zed -f -- "-zgen-prezto-load"
zed:83: bad option: -g
-zgen-prezto-load() {
}
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/zed4
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Misc/zed b/Functions/Misc/zed
index 94dd9ce5b..eb8f557ea 100644
--- a/Functions/Misc/zed
+++ b/Functions/Misc/zed
@@ -69,10 +69,10 @@ fi
 setopt localoptions nobanghist
 
 if ((fun)) then
-  var="$(functions $expand $1)"
+  var="$(functions $expand -- $1)"
   # If function is undefined but autoloadable, load it
   if [[ $var = *\#\ undefined* ]] then
-    var="$(autoload +X $1; functions $1)"
+    var="$(autoload +X $1; functions -- $1)"
   elif [[ -z $var ]] then
     var="$1() {
 }"