about summary refs log tree commit diff
path: root/Completion/Base/_arguments
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-08-19 14:41:32 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-08-19 14:41:32 +0000
commit6adafae34f2e04d2340b36e514ff190bdbab2e6b (patch)
treef67d763c7d6d0ff27a3447376023b97cfee11898 /Completion/Base/_arguments
parent5460b0d4b805b372fee95bde1abb1af144fb4960 (diff)
downloadzsh-6adafae34f2e04d2340b36e514ff190bdbab2e6b.tar.gz
zsh-6adafae34f2e04d2340b36e514ff190bdbab2e6b.tar.xz
zsh-6adafae34f2e04d2340b36e514ff190bdbab2e6b.zip
zsh-workers/7450
Diffstat (limited to 'Completion/Base/_arguments')
-rw-r--r--Completion/Base/_arguments4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Base/_arguments b/Completion/Base/_arguments
index 5170acb84..5e0d35d44 100644
--- a/Completion/Base/_arguments
+++ b/Completion/Base/_arguments
@@ -372,13 +372,13 @@ else
 
       # If the action starts with a space, we just call it.
 
-      $=action
+      ${(e)=~action}
     else
 
       # Otherwise we call it with the description-arguments built above.
 
       action=( $=action )
-      "$action[1]" "$expl[@]" "${(@)action[2,-1]}"
+      ${(e)action[1]} "$expl[@]" ${(e)~action[2,-1]}
     fi
   fi