about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-09-27 14:24:58 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-09-27 14:24:58 +0000
commitb769a2ec88cb4e262b94135bf001b07f8c1d0672 (patch)
tree326a0370336bcf160a99ce5df8ee668d0617361e
parent9d0a4fccf70b23e99e13f4e807c91d1a5a2c6be7 (diff)
downloadzsh-b769a2ec88cb4e262b94135bf001b07f8c1d0672.tar.gz
zsh-b769a2ec88cb4e262b94135bf001b07f8c1d0672.tar.xz
zsh-b769a2ec88cb4e262b94135bf001b07f8c1d0672.zip
zsh-workers/8067
-rw-r--r--Completion/User/_man2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_man b/Completion/User/_man
index ec2af00f0..5d07f61fa 100644
--- a/Completion/User/_man
+++ b/Completion/User/_man
@@ -15,7 +15,7 @@ if [[ -n $_comp_correct ]]; then
 fi
 
 if (( ! $#manpath )); then
-  local mp=$(manpath 2>/dev/null)
+  local mp=($(manpath 2>/dev/null))
   [[ "$mp" == *:* ]] && mp=( ${(s.:.)mp} )
   manpath=( $mp )
 fi