From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4305 invoked from network); 8 May 2000 18:10:22 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 8 May 2000 18:10:22 -0000 Received: (qmail 23948 invoked by alias); 8 May 2000 18:10:09 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11268 Received: (qmail 23933 invoked from network); 8 May 2000 18:10:08 -0000 Message-ID: <391702FD.449917C9@u.genie.co.uk> Date: Mon, 08 May 2000 19:10:05 +0100 From: Oliver Kiddle X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Zsh workers Subject: PATCH: doc fixes Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit A few minor doc fixes. I had saved these because I was going to go through the documentation in detail on the weekend but we had the first half decent weather here in ages so I didn't. Anyway, I'll commit these now before I forget them and hopefully find some time to look through the docs in detail before 3.1.7. Oliver Index: builtins.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/builtins.yo,v retrieving revision 1.5 diff -u -r1.5 builtins.yo --- builtins.yo 2000/05/05 16:45:04 1.5 +++ builtins.yo 2000/05/08 17:58:05 @@ -1026,13 +1026,13 @@ scalar and the array may otherwise be manipulated as normal. If one is unset, the other will automatically be unset too. There is no way of untying the variables without unsetting them, or converting the -type of one them with another tt(typeset) command; tt(+T) does not work, -assigning an array to var(SCALAR) is an error, and assigning a scalar -to var(array) sets it to be a single-element array. Note that +type of one of them with another tt(typeset) command; tt(+T) does not +work, assigning an array to var(SCALAR) is an error, and assigning a +scalar to var(array) sets it to be a single-element array. Note that both tt(typeset -xT ...) and tt(export -T ...) work, but only the scalar will be marked for export. -The flag tt(-g) (global) flag is treated specially: it means that any +The tt(-g) (global) flag is treated specially: it means that any resulting parameter will not be restricted to local scope. Note that this does not necessarily mean that the parameter will be global, as the flag will apply to any existing parameter (even if unset) from an enclosing Index: compsys.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compsys.yo,v retrieving revision 1.37 diff -u -r1.37 compsys.yo --- compsys.yo 2000/05/08 08:44:54 1.37 +++ compsys.yo 2000/05/08 17:58:06 @@ -1182,7 +1182,7 @@ will be considered possible completions. Note that you almost certainly don't want to set this for a general -context such as `tt(:completion:*)'. This because it would disallow +context such as `tt(:completion:*)'. This is because it would disallow completion of, for example, options multiple times even if the command in question accepts the option more than once. )