From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3477 invoked from network); 29 Dec 1999 13:13:55 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 29 Dec 1999 13:13:55 -0000 Received: (qmail 9886 invoked by alias); 29 Dec 1999 13:13:48 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9166 Received: (qmail 9877 invoked from network); 29 Dec 1999 13:13:46 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: PATCH: regexparse References: 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: 29 Dec 1999 22:13:43 +0900 In-Reply-To: Tanaka Akira's message of "25 Dec 1999 09:41:08 +0900" 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 , Tanaka Akira writes: > Finally, I re-implemented most of `_regex_arguments' in C. This patch removes cache-path tag from documents and _zstyle since it is not used now. Index: Completion/Builtins/_zstyle =================================================================== RCS file: /projects/zsh/zsh/Completion/Builtins/_zstyle,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 _zstyle --- Completion/Builtins/_zstyle 1999/12/23 22:09:28 1.1.1.1 +++ Completion/Builtins/_zstyle 1999/12/29 13:06:37 @@ -11,7 +11,6 @@ accept-exact c:bool arguments c: auto-description c: - cache-path 'c:_path_files -/' completer c:completer completions c: condition c: Index: Doc/Zsh/compsys.yo =================================================================== RCS file: /projects/zsh/zsh/Doc/Zsh/compsys.yo,v retrieving revision 1.1.1.103 diff -u -r1.1.1.103 compsys.yo --- Doc/Zsh/compsys.yo 1999/12/23 23:01:41 1.1.1.103 +++ Doc/Zsh/compsys.yo 1999/12/29 13:06:39 @@ -571,9 +571,6 @@ item(tt(ps))( used to look up the tt(arguments) and tt(list-arguments) styles ) -item(tt(regex))( -used to look up tt(cache-path) style -) item(tt(sequences))( for sequences (e.g. tt(mh) sequences) ) @@ -650,13 +647,6 @@ the description for this argument. Depending on personal preferences, it may be useful to set this style to something like `tt(specify: %d)'. Note that this may not work for some commands. -) -item(tt(cache-path))( -The tt(_regex_arguments) utility function used by some completion -functions creates shell functions on the fly. If this style is set to -a non-empty string, the value is taken as the name of a directory -where to store these functions so that they don't have to be created -anew when the completion function is used in another shell. ) item(tt(completer))( The strings given as the value of this style give the names of the Index: Doc/Zsh/mod_zutil.yo =================================================================== RCS file: /projects/zsh/zsh/Doc/Zsh/mod_zutil.yo,v retrieving revision 1.1.1.6 diff -u -r1.1.1.6 mod_zutil.yo --- Doc/Zsh/mod_zutil.yo 1999/12/20 11:24:39 1.1.1.6 +++ Doc/Zsh/mod_zutil.yo 1999/12/29 13:06:39 @@ -108,4 +108,7 @@ are not used to determine how the other strings have to be aligned. The resulting strings are stored in the var(array). ) +item(tt(zregexparse))( +This implements the internals of the `tt(_regex_arguments)'. +) enditem() -- Tanaka Akira