diff options
Diffstat (limited to 'Etc')
-rw-r--r-- | Etc/FAQ.yo | 2 | ||||
-rw-r--r-- | Etc/zsh-development-guide | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Etc/FAQ.yo b/Etc/FAQ.yo index 0cd1e81ca..e71dd5310 100644 --- a/Etc/FAQ.yo +++ b/Etc/FAQ.yo @@ -306,7 +306,7 @@ sect(On what machines will it run?) sect(What's the latest version?) - Zsh 5.1/1 is the latest production version. For details of all the + Zsh 5.2 is the latest production version. For details of all the changes, see the NEWS file in the source distribution. A beta of the next version is sometimes available. Development of zsh is diff --git a/Etc/zsh-development-guide b/Etc/zsh-development-guide index cbbc798d3..c4aa1b243 100644 --- a/Etc/zsh-development-guide +++ b/Etc/zsh-development-guide @@ -77,7 +77,9 @@ avoided further changes to our workflow. X-Seq: 33835, 33872, 34912 http://www.zsh.org/mla/workers/2014/msg01622.html http://www.zsh.org/mla/workers/2014/msg01659.html + -> https://github.com/ft/zsh-am http://www.zsh.org/mla/workers/2015/msg00836.html + -> https://github.com/danielshahaf/zsh-dev Subject: Re: _git commit object name completion X-Seq: 35414 @@ -501,7 +503,9 @@ arguments are: - the options the builtin accepts, given as a string containing the option characters (the above example makes the builtin accept the options `f', `l', `a', `g', and `s'). Passing NULL here disables - all flag handling, i.e. even "--". + all flag handling, i.e. even "--". Each option letter may be + followed by one of ":" (argument must follow), "::" (optional + argument may follow), or ":%" (optional numeric argument). - and finally a optional string containing option characters that will always be reported as set when calling the C-function (this, too, can be used when using one C-function to implement multiple |