From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 590 invoked from network); 16 Feb 1999 14:43:20 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 16 Feb 1999 14:43:20 -0000 Received: (qmail 13756 invoked by alias); 16 Feb 1999 14:42:34 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5401 Received: (qmail 13748 invoked from network); 16 Feb 1999 14:42:28 -0000 Date: Tue, 16 Feb 1999 15:41:45 +0100 (MET) Message-Id: <199902161441.PAA02610@beta.informatik.hu-berlin.de> From: Sven Wischnowsky To: zsh-workers@sunsite.auc.dk Subject: PATCH: fix for new completion files I forgot to rename files to __files in some places. Bye Sven --- of/Completion/__condition Tue Feb 16 15:02:56 1999 +++ Functions/Completion/__condition Tue Feb 16 15:33:46 1999 @@ -3,8 +3,8 @@ if [[ -current -1 -o ]]; then complist -o -M 'L:|[nN][oO]= M:_= M:{A-Z}={a-z}' elif [[ -current -1 -nt || -current -1 -ot || -current -1 -ef ]]; then - files + __files else - files + __files complist -v fi --- of/Completion/__hash Tue Feb 16 15:02:57 1999 +++ Functions/Completion/__hash Tue Feb 16 15:40:33 1999 @@ -2,12 +2,12 @@ if [[ -mword 1 -*d* ]]; then if [[ -string 1 '=' ]]; then - pfiles -g '*(-/)' + __path_files -g '*(-/)' else complist -n -q -S '=' fi elif [[ -string 1 '=' ]]; then - files -g '*(*)' '*(-/)' + __files -g '*(*)' '*(-/)' else complist -m -q -S '=' fi -- Sven Wischnowsky wischnow@informatik.hu-berlin.de