<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zsh/Doc/Zsh/grammar.yo, branch declarednull</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/zsh/atom/Doc/Zsh/grammar.yo?h=declarednull</id>
<link rel='self' href='http://git.sudomsg.com/mirror/zsh/atom/Doc/Zsh/grammar.yo?h=declarednull'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/'/>
<updated>2020-06-27T00:53:02Z</updated>
<entry>
<title>users/24959/0002: Update aliases documentation for the addition of the ALIAS_FUNC_DEF option.</title>
<updated>2020-06-27T00:53:02Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2020-06-24T10:40:45Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9575f2f1bf404b90002a5a55e13558288152a105'/>
<id>urn:sha1:9575f2f1bf404b90002a5a55e13558288152a105</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/24959/0001: Extend documentation of global aliases.</title>
<updated>2020-06-27T00:53:02Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2020-06-24T10:40:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7f58463dd33cfd75af894ba30fcbda576c112e46'/>
<id>urn:sha1:7f58463dd33cfd75af894ba30fcbda576c112e46</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add SHORT_REPEAT option</title>
<updated>2020-04-02T05:42:16Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2019-12-26T02:54:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8923d2a61824b0856839d52f3bf52aedb86fd827'/>
<id>urn:sha1:8923d2a61824b0856839d52f3bf52aedb86fd827</id>
<content type='text'>
</content>
</entry>
<entry>
<title>45583/0008: Add the 'function -T' syntax.</title>
<updated>2020-03-22T02:23:53Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2020-03-19T18:00:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=386d9ac8ff961b8f0333d09511e927ab31011658'/>
<id>urn:sha1:386d9ac8ff961b8f0333d09511e927ab31011658</id>
<content type='text'>
Config/version.mk was bumped in the previous commit.
</content>
</entry>
<entry>
<title>45110: zshmisc(1): Fix markup of "try-list" and "always-list".</title>
<updated>2019-12-22T03:21:11Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>danielsh@apache.org</email>
</author>
<published>2019-12-21T12:41:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f7f2baac5eff3a6d49f2833a8d3aee1e08d28b81'/>
<id>urn:sha1:f7f2baac5eff3a6d49f2833a8d3aee1e08d28b81</id>
<content type='text'>
</content>
</entry>
<entry>
<title>45111: zshmisc(1): Clarify the documentation of 'return' and 'exit' in conjunction with try/always</title>
<updated>2019-12-22T03:21:09Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>danielsh@apache.org</email>
</author>
<published>2019-12-21T12:41:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a0c0aa41d2ac632529f795a02519b1def00b53cc'/>
<id>urn:sha1:a0c0aa41d2ac632529f795a02519b1def00b53cc</id>
<content type='text'>
Having reviewed 20076, 20084, 21734, and 21735, my understanding is that
the original intention was:

- A 'return' in a function does run always-list
- An 'exit' outside a function does not run always-list
- A 'return' outside a function is treated as an 'exit'

All of which are the case today.  The remaining case, of 'exit' used
inside a function, was not specified by the referenced -workers@ posts;
does, as implemented, run the always-list; and furthermore, based in
21734 it's fair to assume that the original documentation was assuming
that 'exit' would be used outside of any function, just like it assumed
'return' would be used inside a function.

Therefore, have the documentation specify only the behaviour of 'exit'
outside any function, and leave the behaviour of 'exit' inside
a function unspecified.  Anyone who relied on the documentation of 'exit'
as documented until this commit would have run into the
documentation/implementation discrepancy described in 45075.
</content>
</entry>
<entry>
<title>43904 (plus tweak): zshmisc(1): document term being optional if `in word' is omitted</title>
<updated>2018-12-17T12:02:43Z</updated>
<author>
<name>Joey Pabalinas</name>
<email>joeypabalinas@gmail.com</email>
</author>
<published>2018-12-17T10:54:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=552ebe6082407b2cd3b9c9434394bad46fc59154'/>
<id>urn:sha1:552ebe6082407b2cd3b9c9434394bad46fc59154</id>
<content type='text'>
In code such as:

&gt; hobbes% () { for arg do print -r $arg; done; } 1 2 3
&gt; 1
&gt; 2
&gt; 3

the implicit positional parameters added when the `in word ...'
list is omitted also implicitly append the separator term, making
the above code valid, albeit seemingly violating the syntax listed
in the documentation.

This is related to the various forms of alternative syntax and is
the intended behavior of the parsing code, so correct the minor
contradiction in the for loop documentation.
</content>
</entry>
<entry>
<title>42261: docs: Expand documentation of $histchars[1]. Joint with Matthew Martin.</title>
<updated>2018-01-13T17:52:59Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2018-01-13T16:11:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ba752d2eb51957b85fa0003732e6e6345ad80668'/>
<id>urn:sha1:ba752d2eb51957b85fa0003732e6e6345ad80668</id>
<content type='text'>
</content>
</entry>
<entry>
<title>41939: docs: Move aliases corner case to the dangerous bends section. (after 41482)</title>
<updated>2017-10-30T13:30:08Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2017-10-19T18:10:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=660df206c1048fe9f63e3bf4178f2f1d79ae7401'/>
<id>urn:sha1:660df206c1048fe9f63e3bf4178f2f1d79ae7401</id>
<content type='text'>
</content>
</entry>
<entry>
<title>41842: aliasing documentation update</title>
<updated>2017-10-10T08:59:31Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2017-10-10T08:59:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ff3e47e9f4fdde30512f48a4e11b2bbaee0c22a3'/>
<id>urn:sha1:ff3e47e9f4fdde30512f48a4e11b2bbaee0c22a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>40744: Document the SHORT_LOOPS 'function' syntax.</title>
<updated>2017-03-08T10:04:34Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2017-03-05T22:10:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a5482971b7ec62f2dc773cf75338865377ada6bf'/>
<id>urn:sha1:a5482971b7ec62f2dc773cf75338865377ada6bf</id>
<content type='text'>
It's already mentioned in passing in zshoptions(1).
</content>
</entry>
<entry>
<title>unposted: a few cosmetic format fixes in docs</title>
<updated>2015-11-12T16:03:38Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-11-12T16:02:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d5ba08af4933fdef596f5151b3e903868d352f65'/>
<id>urn:sha1:d5ba08af4933fdef596f5151b3e903868d352f65</id>
<content type='text'>
</content>
</entry>
<entry>
<title>various posts: Implement assignment parsing for typeset.</title>
<updated>2015-06-24T09:21:12Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-06-18T13:54:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=39b28980f38e83e15cdeb19a489b5659af97fe93'/>
<id>urn:sha1:39b28980f38e83e15cdeb19a489b5659af97fe93</id>
<content type='text'>
Typeset assignments now work like raw assignments except
for no "+=" and no GLOB_ASSIGN.

Documented in typeset builtin doc and mentioned in release notes.

Tests to ensure basic sanity.

Enabled by default, can be turned off by "disable -r" with typeset
family of commands.
</content>
</entry>
<entry>
<title>35250: Fix case documentation (SH_GLOB)</title>
<updated>2015-05-21T09:43:32Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-05-21T09:43:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a95f2c607113b3edd411499ff25ce79fba8a79de'/>
<id>urn:sha1:a95f2c607113b3edd411499ff25ce79fba8a79de</id>
<content type='text'>
</content>
</entry>
<entry>
<title>35034: improve manual format up to Chapter18</title>
<updated>2015-05-06T01:45:21Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-05-06T01:45:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=36a55e278e31cfdf3e2e5212ade32d254e4a857a'/>
<id>urn:sha1:36a55e278e31cfdf3e2e5212ade32d254e4a857a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>34734: further aliasing adjustments and doc</title>
<updated>2015-03-19T01:01:54Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-03-19T01:01:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=32b4cb0e73cdb01c467a0484e906d28d7c104c64'/>
<id>urn:sha1:32b4cb0e73cdb01c467a0484e906d28d7c104c64</id>
<content type='text'>
restrict token aliasing (34641) to global aliases; tighten up POSIX_ALIASES to better match spec; update Aliasing doc to cover this and clarify older behavior

2015-03-18  Peter Stephenson  &lt;p.stephenson@samsung.com&gt;

	* 34723: configure.ac: turn off fixed site function directory if
</content>
</entry>
<entry>
<title>34712: clarify words that may be aliased</title>
<updated>2015-03-16T06:33:19Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-03-16T06:33:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7e994fe145cd5beaadf8719468bbd682c17512b5'/>
<id>urn:sha1:7e994fe145cd5beaadf8719468bbd682c17512b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33679: Note on patter s in case statements</title>
<updated>2014-11-19T15:48:58Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2014-11-19T15:48:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=dded99b0852f5c6847fa48cdd6ee6b74c8a8bc57'/>
<id>urn:sha1:dded99b0852f5c6847fa48cdd6ee6b74c8a8bc57</id>
<content type='text'>
They work exactly like groups in other patterns, despite contrary
indications.</content>
</entry>
<entry>
<title>33319: fix parens in example from 33312</title>
<updated>2014-10-02T04:31:20Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2014-10-02T04:31:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c080bd52bc2ad89c151839d256b269651a67e63c'/>
<id>urn:sha1:c080bd52bc2ad89c151839d256b269651a67e63c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33312: document redirections applied to function definitions</title>
<updated>2014-10-01T19:36:55Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2014-10-01T19:36:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5e516898d73dd797248082daefeb4147ae20fec4'/>
<id>urn:sha1:5e516898d73dd797248082daefeb4147ae20fec4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Attempt to improve doc for assignment</title>
<updated>2014-07-08T08:38:48Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2014-07-08T08:38:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f6b322979b785a9711a17dcc2170228f8a756c6d'/>
<id>urn:sha1:f6b322979b785a9711a17dcc2170228f8a756c6d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix my own merge conflict with grammar changes</title>
<updated>2014-06-09T08:50:37Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2014-06-09T08:50:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6336347c9e02ebae565b2d62987d1052bcba5567'/>
<id>urn:sha1:6336347c9e02ebae565b2d62987d1052bcba5567</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32755: move incorrectly placed line in grammar.yo</title>
<updated>2014-06-09T08:45:47Z</updated>
<author>
<name>Jun T</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2014-06-09T07:09:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=2ba4aa275e548ae9d4406e3bc8008bdfa1ce29eb'/>
<id>urn:sha1:2ba4aa275e548ae9d4406e3bc8008bdfa1ce29eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32715: doc formatting fixes</title>
<updated>2014-06-06T21:02:04Z</updated>
<author>
<name>Jun T</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2014-06-05T14:56:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d7ca50c8720379d55f7edec3a65bdb12d37c9f52'/>
<id>urn:sha1:d7ca50c8720379d55f7edec3a65bdb12d37c9f52</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32603: fix documentation of status after try / always</title>
<updated>2014-05-09T08:53:44Z</updated>
<author>
<name>Eric Cook</name>
<email>llua@gmx.com</email>
</author>
<published>2014-05-09T01:45:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e1ff0a8babc1ba6e22aa4c79987e0ca455de901c'/>
<id>urn:sha1:e1ff0a8babc1ba6e22aa4c79987e0ca455de901c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>30803: Vin Shelton: missing menu entry in grammar.yo</title>
<updated>2012-11-18T18:45:39Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2012-11-18T18:45:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=27a41679b61ed558f55b013e906d2a3b7e4adebb'/>
<id>urn:sha1:27a41679b61ed558f55b013e906d2a3b7e4adebb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>30789: Add CONTINUE_ON_ERROR for old behaviour.</title>
<updated>2012-11-15T21:08:15Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2012-11-15T21:08:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7c56d771840a9f335b2e21290c8cbf714264bc66'/>
<id>urn:sha1:7c56d771840a9f335b2e21290c8cbf714264bc66</id>
<content type='text'>
New behaviour is for scripts to exit on error instead of returning
to top level and executing the next command.
</content>
</entry>
<entry>
<title>A.Costa: unposted: grammar.yo, ChangeLog-3.1: Fix typo to "definition"</title>
<updated>2012-02-01T12:53:48Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2012-02-01T12:53:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=756f17a755fe52eb36aefc99bed4a41385d41df8'/>
<id>urn:sha1:756f17a755fe52eb36aefc99bed4a41385d41df8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>29955++: IGNORE_CLOSE_BRACES option</title>
<updated>2011-12-08T19:42:07Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2011-12-08T19:42:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e3182c18de8f84c2d7eb003f9c731ada5e9a591f'/>
<id>urn:sha1:e3182c18de8f84c2d7eb003f9c731ada5e9a591f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>28377: document more alias problems</title>
<updated>2010-11-17T16:35:27Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-11-17T16:35:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=851b8e151004ec729dad9c8c7867bbf67649df8e'/>
<id>urn:sha1:851b8e151004ec729dad9c8c7867bbf67649df8e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: typo plus rephrase of alias quoting bit</title>
<updated>2010-10-27T12:29:13Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-10-27T12:29:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=eff9d597f3be3b4c5c246de38978acc60ee670e1'/>
<id>urn:sha1:eff9d597f3be3b4c5c246de38978acc60ee670e1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>28375: clarify how to quote aliases from expansion</title>
<updated>2010-10-27T11:28:29Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-10-27T11:28:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e27a65dd6c4181b9d75f6209d4e34201ad432df4'/>
<id>urn:sha1:e27a65dd6c4181b9d75f6209d4e34201ad432df4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27648, 267650/1, unposted README change:</title>
<updated>2010-02-03T18:34:32Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-02-03T18:34:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8ac97f3308ed8b33738b16f4464876f886b9237b'/>
<id>urn:sha1:8ac97f3308ed8b33738b16f4464876f886b9237b</id>
<content type='text'>
Turn off repeat and turn on ulimit in emulation modes
</content>
</entry>
<entry>
<title>users/14387 (tweaked): alternative zsh syntax is not going to be removed</title>
<updated>2009-09-15T13:51:12Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-09-15T13:51:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5d028624843038ca5a6706b539824b2007bb8f78'/>
<id>urn:sha1:5d028624843038ca5a6706b539824b2007bb8f78</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mikael: 25143: spelling corrections</title>
<updated>2008-06-10T08:50:35Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-06-10T08:50:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1c29f641c6276b0bcb1db17a7d64dbb5cad50382'/>
<id>urn:sha1:1c29f641c6276b0bcb1db17a7d64dbb5cad50382</id>
<content type='text'>
25144: report supported bases
25139: fix number
</content>
</entry>
<entry>
<title>25018: Omari Norman: completion for awk, join, sort</title>
<updated>2008-05-13T16:08:35Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-05-13T16:08:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=547adf2021e2e57e421d27e5620170a8751d4274'/>
<id>urn:sha1:547adf2021e2e57e421d27e5620170a8751d4274</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24513, 24514, 24515, 24516, 24517, 24518, 24519, 24520, 24521: typo fixes from A. Costa.</title>
<updated>2008-02-01T19:59:45Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2008-02-01T19:59:45Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3c8d53036c7920ca06fc169ed6dc4126f28d2b58'/>
<id>urn:sha1:3c8d53036c7920ca06fc169ed6dc4126f28d2b58</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Phil Pennock + tweaks: 23398 + more tweaks: exec compatibility options</title>
<updated>2007-05-08T10:02:58Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-05-08T10:02:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8ce657c2cbbd194532be36343fd7f1882513541e'/>
<id>urn:sha1:8ce657c2cbbd194532be36343fd7f1882513541e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>23115: ";|" at end of case clause causes later patterns to be tested</title>
<updated>2007-01-19T21:36:00Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-01-19T21:36:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=de272e0309bc1739f13cc8271a2f94bcde7ba23c'/>
<id>urn:sha1:de272e0309bc1739f13cc8271a2f94bcde7ba23c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted c.f. 21735: document return as exit in try block in script</title>
<updated>2005-09-19T15:19:21Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2005-09-19T15:19:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ce43e4a22c250fbaee14580b167986615455f78f'/>
<id>urn:sha1:ce43e4a22c250fbaee14580b167986615455f78f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>c.f. 21071: always use "status" in return and exit status docs</title>
<updated>2005-04-01T12:03:53Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2005-04-01T12:03:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=db44e186c9ae646c03bb2ca1c3399610840d8f52'/>
<id>urn:sha1:db44e186c9ae646c03bb2ca1c3399610840d8f52</id>
<content type='text'>
</content>
</entry>
<entry>
<title>20076, 20084: { ... } always { ... } syntax.</title>
<updated>2004-06-22T13:09:55Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2004-06-22T13:09:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d591334e9d616830fbd24909db2e21ac4b959742'/>
<id>urn:sha1:d591334e9d616830fbd24909db2e21ac4b959742</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix errors introduced by 15354.</title>
<updated>2001-07-24T13:16:08Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2001-07-24T13:16:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c17b40b6a0ac9d8168c52fe7e1ac47a6cd29894d'/>
<id>urn:sha1:c17b40b6a0ac9d8168c52fe7e1ac47a6cd29894d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Better indexing and misc. cleanup in the first tenth or so of the doc.</title>
<updated>2001-07-10T08:59:17Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2001-07-10T08:59:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5fcfa125bd4f0006c8207d1652908348f3ea526f'/>
<id>urn:sha1:5fcfa125bd4f0006c8207d1652908348f3ea526f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>15264: improved doc for variant complex commands</title>
<updated>2001-07-05T17:23:05Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2001-07-05T17:23:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c4d9fa80a528ddbb69b40ee9c67418a26f9a991d'/>
<id>urn:sha1:c4d9fa80a528ddbb69b40ee9c67418a26f9a991d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>15030: multi-parameter `for' loops</title>
<updated>2001-06-25T16:07:51Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2001-06-25T16:07:51Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1897a361bf68faf47c5d5d0fa662127cbf5c2c95'/>
<id>urn:sha1:1897a361bf68faf47c5d5d0fa662127cbf5c2c95</id>
<content type='text'>
</content>
</entry>
<entry>
<title>12716: Document and index REPLY/reply paramters properly.</title>
<updated>2000-08-29T06:35:39Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2000-08-29T06:35:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=968c9f5f9952f24c322fc638c4af73c2d9a58dd5'/>
<id>urn:sha1:968c9f5f9952f24c322fc638c4af73c2d9a58dd5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>doc changes; typo in _jobs; integer builtin understands `-i base'</title>
<updated>2000-05-14T22:08:41Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2000-05-14T22:08:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=26cc1ad1dfb9ba4ffeaf6079762439822ab828ef'/>
<id>urn:sha1:26cc1ad1dfb9ba4ffeaf6079762439822ab828ef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Spelling corrections in the docs (11315)</title>
<updated>2000-05-11T00:01:03Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@users.sourceforge.net</email>
</author>
<published>2000-05-11T00:01:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ed8b82b9b1bf74392caf4f4683f367bc4cbbd193'/>
<id>urn:sha1:ed8b82b9b1bf74392caf4f4683f367bc4cbbd193</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>1999-04-15T18:05:35Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>1999-04-15T18:05:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c175751b501a3a4cb40ad4787340a597ea769be4'/>
<id>urn:sha1:c175751b501a3a4cb40ad4787340a597ea769be4</id>
<content type='text'>
</content>
</entry>
</feed>
