From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11109 invoked from network); 9 Sep 1999 14:25:12 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 9 Sep 1999 14:25:12 -0000 Received: (qmail 14389 invoked by alias); 9 Sep 1999 14:25:06 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7748 Received: (qmail 14378 invoked from network); 9 Sep 1999 14:25:06 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: PATCH: completion docs (mainly) References: <199909091406.QAA03064@beta.informatik.hu-berlin.de> MIME-Version: 1.0 (generated by AKEMI 1.13.2 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCQTA0Y0s8GyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 09 Sep 1999 23:25:04 +0900 In-Reply-To: Sven Wischnowsky's message of "Thu, 9 Sep 1999 16:06:49 +0200 (MET DST)" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.2 (=?ISO-2022-JP?B?GyRCQTAbKEI=?= =?ISO-2022-JP?B?GyRCNGNLPBsoQg==?=) FLAM-DOODLE/1.12.6 (=?ISO-2022-JP?B?GyRCM3cbKEI=?= 10R4.0/5.0) Emacs/20.4 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article <199909091406.QAA03064@beta.informatik.hu-berlin.de>, Sven Wischnowsky writes: > I also renamed the `_cvs_disable_stat' key to `cvs_disable_stat' -- > Tanaka, could you check if the description is ok? Good. Thanks. Also, I found that `_urls' has a compadd without "$@". Index: Completion/User/_urls =================================================================== RCS file: /projects/zsh/zsh/Completion/User/_urls,v retrieving revision 1.1.1.3 diff -u -F^( -r1.1.1.3 _urls --- _urls 1999/09/06 09:05:17 1.1.1.3 +++ _urls 1999/09/09 14:21:06 @@ -24,6 +24,10 @@ # ... drwxr-xr-x ... 512 Sep 3 02:48 ./bookmark/zsh # ... -rw-r--r-- ... 27 Sep 3 02:47 ./bookmark/zsh/home # ... -rw-r--r-- ... 20 Sep 3 02:48 ./bookmark/zsh/meta +# % cat bookmark/zsh/home +# http://sunsite.auc.dk/zsh/ +# % cat bookmark/zsh/meta +# http://www.zsh.org/ local ipre scheme dirs files @@ -42,7 +46,7 @@ scheme="${PREFIX%%:*}" compset -P "[-+.a-z0-9]#:" else - compadd -S '' http:// ftp:// bookmark: + compadd "$@" -S '' http:// ftp:// bookmark: return fi Index: Completion/Core/_display =================================================================== RCS file: /projects/zsh/zsh/Completion/Core/_display,v retrieving revision 1.1.1.2 diff -u -F^( -r1.1.1.2 _display --- _display 1999/09/09 09:28:10 1.1.1.2 +++ _display 1999/09/09 14:21:06 @@ -15,7 +15,7 @@ # This function will also do the matching required to find out # which strings will be included in the list. All elements that # don't match will be removed from the array. This means that the -# special parameters `PREFI' and `SUFFIX' have to be set up +# special parameters `PREFIX' and `SUFFIX' have to be set up # correctly before this function is called. local _param="$1" _arr _len _i _tmp _simple -- Tanaka Akira