diff options
author | Chmouel Boudjnah <chmou@users.sourceforge.net> | 2000-07-19 23:39:06 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmou@users.sourceforge.net> | 2000-07-19 23:39:06 +0000 |
commit | 07d524a92f988835e4ed0c63325f788d18f56134 (patch) | |
tree | 9dc02cf37b8285469bc58c8c85ee1aa1c11ef518 /Completion/User | |
parent | 666cf52a379d6ea58b7d6815392d46e66ac87bec (diff) | |
download | zsh-07d524a92f988835e4ed0c63325f788d18f56134.tar.gz zsh-07d524a92f988835e4ed0c63325f788d18f56134.tar.xz zsh-07d524a92f988835e4ed0c63325f788d18f56134.zip |
Get also /usr/share/man.
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_perl_builtin_funcs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_perl_builtin_funcs b/Completion/User/_perl_builtin_funcs index f5538c9e4..65eebf9b1 100644 --- a/Completion/User/_perl_builtin_funcs +++ b/Completion/User/_perl_builtin_funcs @@ -12,7 +12,7 @@ if [[ ${+_perl_builtin_funcs} -eq 0 ]]; then typeset -agU _perl_builtin_funcs local perlfunc - if [[ -n "${perlfunc:=$(man -w perlfunc 2>/dev/null; print -l ${^manpath}/man1/perlfunc.1(N) {/usr/man,/usr/local/man}/man1/perlfunc.1(N))}" ]]; then + if [[ -n "${perlfunc:=$(man -w perlfunc 2>/dev/null; print -l ${^manpath}/man1/perlfunc.1(N) {/usr/man,/usr/share/man,/usr/local/man}/man1/perlfunc.1(N))}" ]]; then _perl_builtin_funcs=( `perl -lne ' $in_funcs++, next if /Alphabetical/; \ next unless $in_funcs; \ |