Index: Doc/Zsh/builtins.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/builtins.yo,v retrieving revision 1.46 diff -u -r1.46 builtins.yo --- Doc/Zsh/builtins.yo 20 Jun 2002 16:39:58 -0000 1.46 +++ Doc/Zsh/builtins.yo 5 Aug 2002 11:40:02 -0000 @@ -656,7 +656,7 @@ findex(print) item(tt(print) [ tt(-bnrslzpNDPoOicm) ] [ tt(-u)var(n) ] [ tt(-f) var(format) ] [ tt(-R) [ tt(-en) ]] [ var(arg) ... ])( With the `tt(-f)' option the arguments are printed as described by tt(printf). -With no flags or with flag `tt(-)', the arguments are printed on +With no flags or with the flag `tt(-)', the arguments are printed on the standard output as described by tt(echo), with the following differences: the escape sequence `tt(\M-)var(x)' metafies the character var(x) (sets the highest bit), Index: Doc/Zsh/compsys.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compsys.yo,v retrieving revision 1.159 diff -u -r1.159 compsys.yo --- Doc/Zsh/compsys.yo 1 Jul 2002 08:25:17 -0000 1.159 +++ Doc/Zsh/compsys.yo 5 Aug 2002 11:40:02 -0000 @@ -274,10 +274,10 @@ The var(function) may actually be a string containing any shell code and that string will be executed via the tt(eval) builtin command. -This allows to easily define completions for commands that need to call -one of the completion functions with arguments. For example to make -files ending in `tt(.h)' be completed as arguments to the command -tt(foo), one would use: +This allows for the easy definition of completions for commands that +need to call one of the completion functions with arguments. For +example to make files ending in `tt(.h)' be completed as arguments to +the command tt(foo), one would use: example(compdef '_files -g "*.h"' foo) @@ -568,7 +568,7 @@ kindex(characters, completion tag) item(tt(characters))( used for commands like tt(stty) when completing characters; also used -when completing character classes after a opening bracket +when completing character classes after an opening bracket ) kindex(colormapids, completion tag) item(tt(colormapids))( @@ -3090,7 +3090,7 @@ completion is being performed. The description is given as arguments to this function, with each var(spec) describing one option or normal argument of the command. To separate these var(spec)s from the -options given to tt(_arguments) itself, they can be preceeded by an +options given to tt(_arguments) itself, they can be preceded by an argument containing a single colon. The forms of var(spec) understood are: @@ -4274,7 +4274,7 @@ value whose argument is to be completed. Note also that tt(_values) normally adds the character used as the -separator between values as a auto-removable suffix so that users don't +separator between values as an auto-removable suffix so that users don't have to type it themselves. But when using a `tt(->)var(string)' action tt(_values) can't do that because the matches for the argument will be generated by the calling function. To get the usual behaviour, the Index: Doc/Zsh/contrib.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/contrib.yo,v retrieving revision 1.21 diff -u -r1.21 contrib.yo --- Doc/Zsh/contrib.yo 5 Jul 2002 10:49:47 -0000 1.21 +++ Doc/Zsh/contrib.yo 5 Aug 2002 11:40:02 -0000 @@ -438,7 +438,7 @@ down within the buffer, otherwise they search for a history line matching the start of the current line. In this case, however, they search for a line which matches the current line up to the current cursor position, in -the manner of tt(history-begining-search-backward) and tt(-forward), rather +the manner of tt(history-beginning-search-backward) and tt(-forward), rather than the first word on the line. ) tindex(incarg) @@ -909,7 +909,7 @@ Each line typed is evaluated as an expression. The prompt shows a number, which corresponds to a positional parameter where the result of that calculation is stored. For example, the result of the calculation on the -line preceeded by `tt(4> )' is available as tt($4). Full command line +line preceded by `tt(4> )' is available as tt($4). Full command line editing, including the history of previous calculations, is available; the history is saved in the file tt(~/.zcalc_history). To exit, enter a blank line or type `tt(q)' on its own. @@ -923,7 +923,7 @@ into the global namespace. An extra facility is provided for changing the default output base. Use, -for example, `tt([#16])' to display hexadecimal output preceeded by an +for example, `tt([#16])' to display hexadecimal output preceded by an indication of the base, or `tt([##16])' just to display the raw number in the given base. Bases themselves are always specified in decimal. `tt([#])' restores the normal output format. Index: Doc/Zsh/expn.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/expn.yo,v retrieving revision 1.42 diff -u -r1.42 expn.yo --- Doc/Zsh/expn.yo 22 Feb 2002 17:28:05 -0000 1.42 +++ Doc/Zsh/expn.yo 5 Aug 2002 11:40:03 -0000 @@ -1680,11 +1680,11 @@ up to the next matching character (`tt([)', `tt({)', and `tt(<)' match `tt(])', `tt(})', and `tt(>)' respectively, any other character matches itself) is taken as a list of comma-separated -var(sub-spec)s. Each var(sub-spec) may be either a octal number as +var(sub-spec)s. Each var(sub-spec) may be either an octal number as described above or a list of any of the characters `tt(u)', `tt(g)', `tt(o)', and `tt(a)', followed by a `tt(=)', a `tt(PLUS())', or a `tt(-)', followed by a list of any of the characters `tt(r)', `tt(w)', -`tt(x)', `tt(s)', and `tt(t)', or a octal digit. The first list of +`tt(x)', `tt(s)', and `tt(t)', or an octal digit. The first list of characters specify which access rights are to be checked. If a `tt(u)' is given, those for the owner of the file are used, if a `tt(g)' is given, those of the group are checked, a `tt(o)' means to test those @@ -1886,5 +1886,5 @@ demonstrates how colon modifiers and other qualifiers may be chained together. The ordinary qualifier `tt(.)' is applied first, then the colon modifiers in order from left to right. So if tt(EXTENDED_GLOB) is set and -the base battern matches the regular file tt(builtin.pro), the shell will +the base pattern matches the regular file tt(builtin.pro), the shell will print `tt(shmiltin.shmo)'. Index: Doc/Zsh/files.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/files.yo,v retrieving revision 1.3 diff -u -r1.3 files.yo --- Doc/Zsh/files.yo 10 Jul 2001 08:59:18 -0000 1.3 +++ Doc/Zsh/files.yo 5 Aug 2002 11:40:03 -0000 @@ -10,7 +10,7 @@ pindex(NO_RCS, use of) pindex(NO_GLOBAL_RCS, use of) vindex(ZDOTDIR, use of) -@cindex(zshenv) +cindex(zshenv) Commands are first read from tt(/etc/zshenv); this cannot be overridden. Subsequent behaviour is modified by the tt(RCS) and tt(GLOBAL_RCS) options; the former affects all startup files, while the Index: Doc/Zsh/params.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/params.yo,v retrieving revision 1.15 diff -u -r1.15 params.yo --- Doc/Zsh/params.yo 21 Feb 2002 13:43:00 -0000 1.15 +++ Doc/Zsh/params.yo 5 Aug 2002 11:40:03 -0000 @@ -707,9 +707,8 @@ item(tt(fignore) (tt(FIGNORE) ))( An array (colon separated list) containing the suffixes of files to be ignored -during filename completion. However, if the completion generates only files -which would match if this variable would be ignored, than these files are -completed anyway. +during filename completion. However, if completion only generates files +with suffixes in this list, then these files are completed anyway. ) vindex(fpath) vindex(FPATH) Index: Doc/Zsh/zle.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/zle.yo,v retrieving revision 1.25 diff -u -r1.25 zle.yo --- Doc/Zsh/zle.yo 4 Jul 2002 10:13:39 -0000 1.25 +++ Doc/Zsh/zle.yo 5 Aug 2002 11:40:03 -0000 @@ -1045,7 +1045,7 @@ the default behaviour is used, while if it is 1, successive calls will move forwards through the history. The value 0 can be used to indicate that the history line examined by the previous execution of the command will be -reexamined. Note that negative numbers should be preceeded with a +reexamined. Note that negative numbers should be preceded with a `tt(-)tt(-)' argument to avoid confusing them with options. If two arguments are given, the second specifies the word on the command