about summary refs log tree commit diff
path: root/Completion/Core
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:13:39 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:13:39 +0000
commit8b603585aaaec62243433b8dc915f2e590d6ab48 (patch)
tree116d4ad152d6f92310a82798dd5eefa3aacb9b72 /Completion/Core
parent9e1b9444345b9a48e4172d7e01b48c62bd253dfa (diff)
downloadzsh-8b603585aaaec62243433b8dc915f2e590d6ab48.tar.gz
zsh-8b603585aaaec62243433b8dc915f2e590d6ab48.tar.xz
zsh-8b603585aaaec62243433b8dc915f2e590d6ab48.zip
moved to Completion/Base/Utility/_call_program
Diffstat (limited to 'Completion/Core')
-rw-r--r--Completion/Core/_call13
1 files changed, 0 insertions, 13 deletions
diff --git a/Completion/Core/_call b/Completion/Core/_call
deleted file mode 100644
index b038a80bc..000000000
--- a/Completion/Core/_call
+++ /dev/null
@@ -1,13 +0,0 @@
-#autoload +X
-
-local tmp
-
-if zstyle -s ":completion:${curcontext}:${1}" command tmp; then
-  if [[ "$tmp" = -* ]]; then
-    eval "$tmp[2,-1]" "$argv[2,-1]"
-  else
-    eval "$tmp"
-  fi
-else
-  eval "$argv[2,-1]"
-fi