summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-shells/zsh/files/zsh-5.0.7-fix-cvs-completion.patch')
-rw-r--r--app-shells/zsh/files/zsh-5.0.7-fix-cvs-completion.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/app-shells/zsh/files/zsh-5.0.7-fix-cvs-completion.patch b/app-shells/zsh/files/zsh-5.0.7-fix-cvs-completion.patch
deleted file mode 100644
index 5beb7eca..00000000
--- a/app-shells/zsh/files/zsh-5.0.7-fix-cvs-completion.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-http://www.zsh.org/mla/workers/2014/msg01191.html
-
-diff --git a/Completion/Base/Utility/_call_program b/Completion/Base/Utility/_call_program
-index b657648..010e094 100644
---- a/Completion/Base/Utility/_call_program
-+++ b/Completion/Base/Utility/_call_program
-@@ -2,8 +2,8 @@
-
- local tmp err_fd=-1
-
--if (( ${debug_fd:--1} > 2 ))
--then exec {err_fd}>&2 # debug_fd is saved stderr, 2 is log file
-+if (( ${debug_fd:--1} > 2 )) || [[ ! -t 2 ]]
-+then exec {err_fd}>&2 # debug_fd is saved stderr, 2 is trace or redirect
- else exec {err_fd}>/dev/null
- fi
-
-
---