From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6664 invoked from network); 19 Jul 2000 23:33:26 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 19 Jul 2000 23:33:26 -0000 Received: (qmail 29197 invoked by alias); 19 Jul 2000 23:33:17 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12319 Received: (qmail 29181 invoked from network); 19 Jul 2000 23:33:17 -0000 X-Authentication-Warning: cassini.us.mandrakesoft.com: chmou set sender to chmouel@mandrakesoft.com using -f To: zsh-workers@sunsite.auc.dk Subject: perl_builting get /usr/share also in the completion From: Chmouel Boudjnah Date: 19 Jul 2000 16:09:41 -0700 Message-ID: User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.6 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii * Completion/User/_perl_builtin_funcs: Get also /usr/share/man : Index: Completion/User/_perl_builtin_funcs =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/User/_perl_builtin_funcs,v retrieving revision 1.2 diff -u -r1.2 _perl_builtin_funcs --- Completion/User/_perl_builtin_funcs 2000/05/31 09:38:26 1.2 +++ Completion/User/_perl_builtin_funcs 2000/07/19 23:30:42 @@ -12,7 +12,7 @@ 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; \ -- MandrakeSoft Inc http://www.mandrakesoft.com San-Francisco, CA USA --Chmouel