<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zsh/Functions/Misc, branch zsh-5.0.7</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/zsh/atom/Functions/Misc?h=zsh-5.0.7</id>
<link rel='self' href='http://git.sudomsg.com/mirror/zsh/atom/Functions/Misc?h=zsh-5.0.7'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/'/>
<updated>2014-08-23T20:01:58Z</updated>
<entry>
<title>33047: use git to simplify massively source distribution file selection</title>
<updated>2014-08-23T20:01:58Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2014-08-23T20:01:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cc6e9db29da73bb226b6e53ff4df0f135207d206'/>
<id>urn:sha1:cc6e9db29da73bb226b6e53ff4df0f135207d206</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32527: zcalc-auto-insert key binding for use in zcalc</title>
<updated>2014-04-07T08:58:30Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2014-04-07T08:58:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=47c440aa2a141b1af60c2df192ff257b902dd177'/>
<id>urn:sha1:47c440aa2a141b1af60c2df192ff257b902dd177</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32453: fix zcalc default base handling</title>
<updated>2014-03-01T21:27:47Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2014-03-01T21:27:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=965d7305e57b9b1a009af71368fcbf6da4e756a8'/>
<id>urn:sha1:965d7305e57b9b1a009af71368fcbf6da4e756a8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32299: add use of underscores on arithmetic output for spacing</title>
<updated>2014-01-23T10:32:59Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2014-01-23T10:32:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=22b8fd6da931657ec930ba2625179c704de3e830'/>
<id>urn:sha1:22b8fd6da931657ec930ba2625179c704de3e830</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32031 plus missed _run_help: get helpfiles install path corect in functions</title>
<updated>2013-11-23T17:44:12Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2013-11-23T17:44:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9503b161ab893a5d5c6ac6f9fdd9e938aee7045c'/>
<id>urn:sha1:9503b161ab893a5d5c6ac6f9fdd9e938aee7045c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>31940: zcalc -e uses arguments as input</title>
<updated>2013-11-08T11:34:37Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2013-11-08T11:34:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=12251d65ffd6fe150f538cee819336228d8bcc31'/>
<id>urn:sha1:12251d65ffd6fe150f538cee819336228d8bcc31</id>
<content type='text'>
</content>
</entry>
<entry>
<title>31634: run-help compat with alias to noglob/nocorrect</title>
<updated>2013-08-07T08:11:56Z</updated>
<author>
<name>Phil Pennock</name>
<email>pdpennock@users.sourceforge.net</email>
</author>
<published>2013-08-07T07:50:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=180c4c049c60c963378da8f9582937eb1682870e'/>
<id>urn:sha1:180c4c049c60c963378da8f9582937eb1682870e</id>
<content type='text'>
Given `alias fetch='noglob fetch'`, without this change `run-help fetch`
recurses to invoke itself on the noglob command, bringing up the help
for noglob.  Similarly for nocorrect.  Thus the user would have to quit
out of the pager, then avoid quitting out of the loop, so that they can
go into the second iteration and see the help for the second instance
found by `whence -a`, which happens to be the target of the alias.
With common pagers, that's thus 'q', 'not-q'.  Somewhat frustrating.

Without this change, `alias foo='noglob bar'` where `foo` is not
otherwise a command would _never_ show the help for `bar`, since it only
showed the help for `noglob` and there was no second line of whence
output to trigger the second pass.

With this change, aliases to `noglob|nocorrect` of a command somewhat
ignore the presence of that precommand modifier; if a command is aliased
to `noglob $itself`, then the result is that the first line of whence
output is shown, no pager is used, the user can immediately see a prompt
to continue and press something other-than-q to see the help for the
command.

If given `alias foo='noglob bar'` then `run-help foo` will immediately
show the help for bar.

This behaviour was chosen to be consistent with the existing alias
support, but just working better with the precommand modifier.
</content>
</entry>
<entry>
<title>31503: zmv improvements for user-specified programs.</title>
<updated>2013-07-03T11:46:02Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2013-07-03T11:46:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=669c070efe06d1820ccb32adaa6b1512279401ab'/>
<id>urn:sha1:669c070efe06d1820ccb32adaa6b1512279401ab</id>
<content type='text'>
-p splits words of commands passed to it.
-P is like -p for when the program doesn't understand the -- convention
</content>
</entry>
<entry>
<title>31155: minor extra zcalc features and documentation</title>
<updated>2013-03-17T20:52:55Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2013-03-17T20:52:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ab8fe84a8c179f5990c4fd7cd7e2cfa82ed03cc3'/>
<id>urn:sha1:ab8fe84a8c179f5990c4fd7cd7e2cfa82ed03cc3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>31154: make zcalc understand continuation lines with a backslash</title>
<updated>2013-03-15T20:15:10Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2013-03-15T20:15:10Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=136cc1e1b79ebc07f5deb630fea9d325276d077c'/>
<id>urn:sha1:136cc1e1b79ebc07f5deb630fea9d325276d077c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/17666: zcalc -f sets FORCE_FLOAT</title>
<updated>2013-03-05T20:06:59Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2013-03-05T20:06:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=26694406f22f0fe37d0b751066200bf0cfdec165'/>
<id>urn:sha1:26694406f22f0fe37d0b751066200bf0cfdec165</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Stepan Koltsov: 30634: use (q-) quoting</title>
<updated>2012-08-20T14:03:04Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2012-08-20T14:03:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=07fd604718b0b2202808c121f7bbcb4dce5c9ae5'/>
<id>urn:sha1:07fd604718b0b2202808c121f7bbcb4dce5c9ae5</id>
<content type='text'>
for zmv output for clarity.
</content>
</entry>
<entry>
<title>users/17134: avoid bad math error</title>
<updated>2012-06-16T04:30:35Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2012-06-16T04:30:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=38a4364db5ff298558fea28334a49c41f5921e7e'/>
<id>urn:sha1:38a4364db5ff298558fea28334a49c41f5921e7e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>30388, 30389 (Stephane): zargs: handle zero-length arguments.</title>
<updated>2012-04-12T18:45:59Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2012-04-12T18:45:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5e2fe3ca18887063f02a677baeb35eb669dec7eb'/>
<id>urn:sha1:5e2fe3ca18887063f02a677baeb35eb669dec7eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted (users/16697): use a better output file name when the DISPLAY</title>
<updated>2012-03-01T03:36:48Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2012-03-01T03:36:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=915766c624880ead34a80796a80f014822db3d96'/>
<id>urn:sha1:915766c624880ead34a80796a80f014822db3d96</id>
<content type='text'>
variable refers to a socket file (MacOS); fix problem with writing the
output file when the user overrides the default value of TERM.
</content>
</entry>
<entry>
<title>unposted (30090): add -h (help) and -L (list extant hooks) options.</title>
<updated>2012-03-01T03:35:49Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2012-03-01T03:35:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f2bf8fa36582e79361a1a961119a8ccb128bbb35'/>
<id>urn:sha1:f2bf8fa36582e79361a1a961119a8ccb128bbb35</id>
<content type='text'>
</content>
</entry>
<entry>
<title>28852: Use syntax that doesn't depend on SHORT_LOOPS being set.</title>
<updated>2011-08-14T13:40:53Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2011-08-14T13:40:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=20c52f622154ed00fac8ed3cf6416e955551d372'/>
<id>urn:sha1:20c52f622154ed00fac8ed3cf6416e955551d372</id>
<content type='text'>
</content>
</entry>
<entry>
<title>29307, 29308 + replies: Fix some doubled words in docs and comments.</title>
<updated>2011-05-19T16:10:46Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2011-05-19T16:10:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=72cb7cfc6fff21d3fb9b3f1aa384ce4b17a4e8c0'/>
<id>urn:sha1:72cb7cfc6fff21d3fb9b3f1aa384ce4b17a4e8c0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/15864: turn zsh_directory_name into a hook</title>
<updated>2011-03-11T16:32:07Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2011-03-11T16:32:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f2dca9e155f25ee57f15df7dc2dc81489e1abbae'/>
<id>urn:sha1:f2dca9e155f25ee57f15df7dc2dc81489e1abbae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>28758: make `colors' function work with non-default option sets</title>
<updated>2011-02-15T09:28:54Z</updated>
<author>
<name>Frank Terbeck</name>
<email>bewater@users.sourceforge.net</email>
</author>
<published>2011-02-15T09:28:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9bfc05e3dba10929cf13dd7628bf8adac7d6345a'/>
<id>urn:sha1:9bfc05e3dba10929cf13dd7628bf8adac7d6345a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/15583: update with zstyles and for ease of use in zle-line-init.</title>
<updated>2010-11-27T19:47:00Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2010-11-27T19:47:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=828574d953596545ad0d62beb952a6a5978e9244'/>
<id>urn:sha1:828574d953596545ad0d62beb952a6a5978e9244</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Jérôme Pouiller: 28351: new help functions</title>
<updated>2010-10-18T09:33:42Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-10-18T09:33:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=76351e9b69812c6757c9b5e1e36f99dba417b98d'/>
<id>urn:sha1:76351e9b69812c6757c9b5e1e36f99dba417b98d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>c.f. users/15202: use "autoload -Uz" consistently</title>
<updated>2010-07-28T14:01:12Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-07-28T14:01:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4de3dbac168aa5e89d4f7c278917c8af4b226542'/>
<id>urn:sha1:4de3dbac168aa5e89d4f7c278917c8af4b226542</id>
<content type='text'>
</content>
</entry>
<entry>
<title>c.f. users/15202: use "autoload -Uz" consistently</title>
<updated>2010-07-28T13:33:52Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-07-28T13:33:52Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=10c2f225fdb6e2b6cd96b2f3786d6134e19bbfd1'/>
<id>urn:sha1:10c2f225fdb6e2b6cd96b2f3786d6134e19bbfd1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/14752: add #! line to zed</title>
<updated>2010-01-29T21:44:54Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-01-29T21:44:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0d8a58095196ece20dadd4894c4ddf8ddf440cdf'/>
<id>urn:sha1:0d8a58095196ece20dadd4894c4ddf8ddf440cdf</id>
<content type='text'>
allow script run with -i to exit on return
</content>
</entry>
<entry>
<title>Julien Jehannet: users/14751: typo in variable name in zed</title>
<updated>2010-01-29T20:58:43Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-01-29T20:58:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1d31834223066694e2859f8ff8c84e22ae613810'/>
<id>urn:sha1:1d31834223066694e2859f8ff8c84e22ae613810</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: return status 1 if no replacement</title>
<updated>2010-01-19T13:13:56Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-01-19T13:13:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1c71dfd735f34b2b3c7cf8abc3144e763fc96b60'/>
<id>urn:sha1:1c71dfd735f34b2b3c7cf8abc3144e763fc96b60</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27604: substitution using regular expressions</title>
<updated>2010-01-18T12:47:09Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-01-18T12:47:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c508c6e368ac7faef55a16d9c85a2fbdd21232fc'/>
<id>urn:sha1:c508c6e368ac7faef55a16d9c85a2fbdd21232fc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27577: sergio: (%) is not needed in zcalc prompt since PROMPTPERCENT is obeyed</title>
<updated>2010-01-08T09:30:43Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2010-01-08T09:30:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8c60540ce6a2969878c8e172e0015d32e5a6ddc0'/>
<id>urn:sha1:8c60540ce6a2969878c8e172e0015d32e5a6ddc0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: new run-help-p4</title>
<updated>2009-12-16T12:11:56Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-12-16T12:11:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3b289b32a7a33c74a18259718bf33e0cf78a7eca'/>
<id>urn:sha1:3b289b32a7a33c74a18259718bf33e0cf78a7eca</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27492 based on Jörg Sommer: 27473: fix run-help alias problem.</title>
<updated>2009-12-16T11:07:09Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-12-16T11:07:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=46bad169a8962ac75e64206b1034338f4e01b595'/>
<id>urn:sha1:46bad169a8962ac75e64206b1034338f4e01b595</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Alexey: users/14588: ztodo function and completion</title>
<updated>2009-11-22T19:17:32Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-11-22T19:17:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b7e76da2ef8e25fde84ad0c235c2bc560ea03863'/>
<id>urn:sha1:b7e76da2ef8e25fde84ad0c235c2bc560ea03863</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Alexey: users/14588: ztodo function and completion</title>
<updated>2009-11-22T19:06:54Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-11-22T19:06:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3d8115275f6a5032d37178bd01fa8ce1b726b353'/>
<id>urn:sha1:3d8115275f6a5032d37178bd01fa8ce1b726b353</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27247: zmv checking for **/ was wrong</title>
<updated>2009-09-06T21:35:37Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-09-06T21:35:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=817000920fe922cca3cfd8302c4aa26b9d608743'/>
<id>urn:sha1:817000920fe922cca3cfd8302c4aa26b9d608743</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27305: fix GNU man option handling in run-help</title>
<updated>2009-06-05T11:18:01Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-06-05T11:18:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=dfabf50cf1ee78d5a1849fd19409ee23150506c4'/>
<id>urn:sha1:dfabf50cf1ee78d5a1849fd19409ee23150506c4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>26973: zmathfuncdef enhancements</title>
<updated>2009-05-19T15:33:24Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-05-19T15:33:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ad3d514ac79b573ce43fa7089175de519f39f21d'/>
<id>urn:sha1:ad3d514ac79b573ce43fa7089175de519f39f21d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: back off 26862</title>
<updated>2009-04-25T20:30:20Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-04-25T20:30:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7e304940e5abf61362803f53847306f4270a1875'/>
<id>urn:sha1:7e304940e5abf61362803f53847306f4270a1875</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Greg: 26862: remove unnecessary print</title>
<updated>2009-04-21T16:05:34Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-04-21T16:05:34Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0c11cb5b477e0e7c589f4fa0f00f3f27064141c4'/>
<id>urn:sha1:0c11cb5b477e0e7c589f4fa0f00f3f27064141c4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>26202: show zshmodules(1) for echotc, echoti, sched, zprof, zpty, zsocket, zstyle, and ztcp builtins as well.</title>
<updated>2008-12-30T05:40:55Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2008-12-30T05:40:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=80bb48a40004761fefa3f8f433b8450bda605e80'/>
<id>urn:sha1:80bb48a40004761fefa3f8f433b8450bda605e80</id>
<content type='text'>
</content>
</entry>
<entry>
<title>25814: quote arguments to "eval".</title>
<updated>2008-10-10T09:53:22Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-10-10T09:53:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e4ae98949c7a7902d3cc9dff5166f9460a49e77e'/>
<id>urn:sha1:e4ae98949c7a7902d3cc9dff5166f9460a49e77e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>25823: bring up zshcontrib man page if run-help is run on run-help and run-help is a function.</title>
<updated>2008-10-07T08:07:04Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2008-10-07T08:07:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7e86f2da31ec41931f6fb524854d5baf6143062a'/>
<id>urn:sha1:7e86f2da31ec41931f6fb524854d5baf6143062a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>TCP functions: fix some variable handling problems,</title>
<updated>2008-08-01T11:48:38Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-08-01T11:48:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5e7e797ca90cd1c1b7ab54d39118f0b7469f348f'/>
<id>urn:sha1:5e7e797ca90cd1c1b7ab54d39118f0b7469f348f</id>
<content type='text'>
also standardise indentation
add-zsh-hook: fix check for existence of hook function in existing hook
</content>
</entry>
<entry>
<title>25272: add zshaddhistory hook</title>
<updated>2008-07-17T11:27:55Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-07-17T11:27:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0409391c7d08016de3f1ea8b1a74d5856669ffaa'/>
<id>urn:sha1:0409391c7d08016de3f1ea8b1a74d5856669ffaa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>25276: use autoload -z for zsh-autoload functions</title>
<updated>2008-07-11T19:12:22Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-07-11T19:12:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ffabab4e74ae5b7e61550c528b8d19f6af6217e3'/>
<id>urn:sha1:ffabab4e74ae5b7e61550c528b8d19f6af6217e3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>zcalc completion idiosyncracies with :!</title>
<updated>2008-06-13T14:27:37Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-06-13T14:27:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=aadd07e05f18a41e44129cbbb1b37796a54a685f'/>
<id>urn:sha1:aadd07e05f18a41e44129cbbb1b37796a54a685f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>zcalc completion idiosyncracies with :!</title>
<updated>2008-06-13T14:16:57Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-06-13T14:16:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=627c7db0e5c891c0878558e14b60f187009b5001'/>
<id>urn:sha1:627c7db0e5c891c0878558e14b60f187009b5001</id>
<content type='text'>
</content>
</entry>
<entry>
<title>improved zcalc escapes and completion</title>
<updated>2008-06-13T13:57:04Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-06-13T13:57:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=808b79eba68de4511c2960a3e5a5f672bed95a07'/>
<id>urn:sha1:808b79eba68de4511c2960a3e5a5f672bed95a07</id>
<content type='text'>
</content>
</entry>
<entry>
<title>25095: thorough modernization of prompt theme system</title>
<updated>2008-05-17T22:42:16Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-05-17T22:42:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c894f695cc02f16af429c7506bb78354dcd9a1e3'/>
<id>urn:sha1:c894f695cc02f16af429c7506bb78354dcd9a1e3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24990: Stephane Chazelas: fix various little quirks in zmv</title>
<updated>2008-05-11T11:23:30Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-05-11T11:23:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=001e8ca70e90f574c90c00c5dad41221db248c1b'/>
<id>urn:sha1:001e8ca70e90f574c90c00c5dad41221db248c1b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Miek Gieben: users/12781: zmv Usage message</title>
<updated>2008-04-13T16:11:53Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-04-13T16:11:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c1db47d16b799820491994447514c7e3dbc7316a'/>
<id>urn:sha1:c1db47d16b799820491994447514c7e3dbc7316a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Functions/Misc/zkbd: add -h to local declaration in is-this-a-function test.</title>
<updated>2008-03-15T01:09:05Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-03-15T01:09:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=bda53dc6d5135750c52f59b9cfbab39b161c0919'/>
<id>urn:sha1:bda53dc6d5135750c52f59b9cfbab39b161c0919</id>
<content type='text'>
Use $DISPLAY when we have one instead of only $VENDOR-$OSTYPE as file name
suffix.  Add some knowledge of the MULTIBYTE option and its effects.
</content>
</entry>
<entry>
<title>24576: replace shebang lines.</title>
<updated>2008-02-22T02:56:13Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2008-02-22T02:56:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7814ace748ff2fbf3bd8e2d661ed449bb128da11'/>
<id>urn:sha1:7814ace748ff2fbf3bd8e2d661ed449bb128da11</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: Functions/Misc/xtermctl: update uses of "read" to take advantage</title>
<updated>2008-02-18T03:30:22Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-02-18T03:30:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=00e6c6e0f5bd48d730d77e76379cfd0b17325a70'/>
<id>urn:sha1:00e6c6e0f5bd48d730d77e76379cfd0b17325a70</id>
<content type='text'>
of users/12600.
</content>
</entry>
<entry>
<title>unposted: remove shebang line.</title>
<updated>2008-02-07T02:07:59Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2008-02-07T02:07:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5202a8be2e977dca4070da529d2640e5fc79efcf'/>
<id>urn:sha1:5202a8be2e977dca4070da529d2640e5fc79efcf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>4.3.4-dev-8</title>
<updated>2008-01-29T14:29:19Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-01-29T14:29:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=20ec72c83bb598e9615a137884455925a343a685'/>
<id>urn:sha1:20ec72c83bb598e9615a137884455925a343a685</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/12453: X11 window control for xterm-compatible emulators</title>
<updated>2008-01-18T17:47:24Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-01-18T17:47:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b44aef27545c6b5744de7d6315137fcec8ea6eb2'/>
<id>urn:sha1:b44aef27545c6b5744de7d6315137fcec8ea6eb2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix introductory comment and add -i to the #! line.</title>
<updated>2008-01-16T08:09:20Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-01-16T08:09:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3823be143b75737a20a5bdac685586320db79063'/>
<id>urn:sha1:3823be143b75737a20a5bdac685586320db79063</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/12426: post-it notes for zsh</title>
<updated>2008-01-13T17:37:46Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-01-13T17:37:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cdbe7f188d6708785d0f215a3a5d5143f495ec85'/>
<id>urn:sha1:cdbe7f188d6708785d0f215a3a5d5143f495ec85</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24364: local assignment to HELPDIR with a default location.</title>
<updated>2008-01-13T17:37:21Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2008-01-13T17:37:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7a678d803ce043c4837230cf8ff40ac8c9af4de1'/>
<id>urn:sha1:7a678d803ce043c4837230cf8ff40ac8c9af4de1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24349: add comment about HELPDIR to assist replacement in Debian build.</title>
<updated>2008-01-04T04:38:03Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2008-01-04T04:38:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e3d69e9b3656ce779d9cb3cd52a1a4dcb752a635'/>
<id>urn:sha1:e3d69e9b3656ce779d9cb3cd52a1a4dcb752a635</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24332, 24333: Improvements to run-help suggested by J.Sommer.</title>
<updated>2007-12-31T22:13:46Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2007-12-31T22:13:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=66742c60451a1741688245d682471611f33372a5'/>
<id>urn:sha1:66742c60451a1741688245d682471611f33372a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24298: Tonguc Yumruk: emulate -L consistency</title>
<updated>2007-12-19T20:06:16Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-12-19T20:06:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=74f4e8f66340644f73ee4be56901a58029b47a76'/>
<id>urn:sha1:74f4e8f66340644f73ee4be56901a58029b47a76</id>
<content type='text'>
</content>
</entry>
<entry>
<title>24242: unify top lines as #!/bin/zsh (followed by options).</title>
<updated>2007-12-13T22:20:58Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2007-12-13T22:20:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=75c0f5cde8994b3bc3b277263311d8ac553435c9'/>
<id>urn:sha1:75c0f5cde8994b3bc3b277263311d8ac553435c9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>attempt to remove executable permission, part 3</title>
<updated>2007-07-25T20:15:38Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-07-25T20:15:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=303a089a8e3402d3d38e8d0b2b424c2ee93e06e7'/>
<id>urn:sha1:303a089a8e3402d3d38e8d0b2b424c2ee93e06e7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>attempt to remove executable permission, part 2</title>
<updated>2007-07-25T20:15:15Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-07-25T20:15:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1f27eed7b15a0843056bec1281fa296642056177'/>
<id>urn:sha1:1f27eed7b15a0843056bec1281fa296642056177</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: force file to be non-executable</title>
<updated>2007-07-25T20:11:21Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-07-25T20:11:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=71745c6f9b478623aeac803fb5d03bbced058576'/>
<id>urn:sha1:71745c6f9b478623aeac803fb5d03bbced058576</id>
<content type='text'>
</content>
</entry>
<entry>
<title>11484: allow zmv to rename to equivalent but differently named files</title>
<updated>2007-05-14T17:58:57Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-05-14T17:58:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a11fbaf68c2bf81424c1ca8381e2043b5b56711b'/>
<id>urn:sha1:a11fbaf68c2bf81424c1ca8381e2043b5b56711b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>23301: fix semicolon mistyped as a colon.</title>
<updated>2007-04-19T19:54:00Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2007-04-19T19:54:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8f0fefdbfdd61d1400852c34a94b3827cf88285a'/>
<id>urn:sha1:8f0fefdbfdd61d1400852c34a94b3827cf88285a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: meant to add add-zsh-hook a while ago</title>
<updated>2007-04-19T09:40:55Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-04-19T09:40:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0d101890d0faeaefa863099042e3510f5021fbc3'/>
<id>urn:sha1:0d101890d0faeaefa863099042e3510f5021fbc3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: prepare for release of 4.3.3</title>
<updated>2007-04-16T13:21:24Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-04-16T13:21:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f48fa9eb9d66bb225ef2529186b8d7048ea3b2ba'/>
<id>urn:sha1:f48fa9eb9d66bb225ef2529186b8d7048ea3b2ba</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: tweak for possible multibyte characters.</title>
<updated>2007-02-26T07:44:10Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2007-02-26T07:44:10Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ac8ccbfc82472fd35143ea53fd099607de7e9c06'/>
<id>urn:sha1:ac8ccbfc82472fd35143ea53fd099607de7e9c06</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a number of other notes about terminal attributes.</title>
<updated>2006-10-16T01:08:41Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2006-10-16T01:08:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9f392b5a54c418d56972b5f2f9032942312c73e4'/>
<id>urn:sha1:9f392b5a54c418d56972b5f2f9032942312c73e4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22874: run-help unquoting wasn't consistent</title>
<updated>2006-10-15T17:30:13Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-10-15T17:30:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=38f01e72ea45e0e415d3aed74237b35ebad5dd29'/>
<id>urn:sha1:38f01e72ea45e0e415d3aed74237b35ebad5dd29</id>
<content type='text'>
</content>
</entry>
<entry>
<title>zsh-users/10720: a couple of checkmail fixes</title>
<updated>2006-09-15T18:22:19Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-09-15T18:22:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=572ad667e7c868dbcb2c609cd7d421c3359589b9'/>
<id>urn:sha1:572ad667e7c868dbcb2c609cd7d421c3359589b9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22480: autoload math functions from zmathfuncdef</title>
<updated>2006-06-02T13:34:59Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-06-02T13:34:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1cf30c353e753675467c1a3ea198c78bafb5ae0e'/>
<id>urn:sha1:1cf30c353e753675467c1a3ea198c78bafb5ae0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: improve recognition of parameter arguments in zmathfuncdef</title>
<updated>2006-04-23T22:47:01Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-04-23T22:47:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9b844cfe738ba9dad19d9df3e6ca63e4dba78e61'/>
<id>urn:sha1:9b844cfe738ba9dad19d9df3e6ca63e4dba78e61</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22416: forgot zmathfuncdef</title>
<updated>2006-04-20T10:04:30Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-04-20T10:04:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5d9563ab12580aa1d0b20bcfba4af006b46b2a09'/>
<id>urn:sha1:5d9563ab12580aa1d0b20bcfba4af006b46b2a09</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22416, tweaked: math functions via shell functions</title>
<updated>2006-04-19T16:09:06Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-04-19T16:09:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b7474e065b82d930f8da472440282ea7654d491d'/>
<id>urn:sha1:b7474e065b82d930f8da472440282ea7654d491d</id>
<content type='text'>
unposted: add styles to pick-web-browser
</content>
</entry>
<entry>
<title>users/9604: enhance run-help to strip quotes</title>
<updated>2005-11-01T18:25:05Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2005-11-01T18:25:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=2b281e741cda86f0e7539214235139f372764696'/>
<id>urn:sha1:2b281e741cda86f0e7539214235139f372764696</id>
<content type='text'>
</content>
</entry>
<entry>
<title>21960: put zcalc history file in ZDOTDIR if set.</title>
<updated>2005-10-31T16:01:13Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2005-10-31T16:01:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8c3234fb738b56cb8e087681fd8cf82aeac5046b'/>
<id>urn:sha1:8c3234fb738b56cb8e087681fd8cf82aeac5046b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: range-checking of numeric arguments in zargs</title>
<updated>2005-09-24T17:43:55Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2005-09-24T17:43:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8d6cd1dc94f985e98a794d7e8d9f23ebe0b6d7e6'/>
<id>urn:sha1:8d6cd1dc94f985e98a794d7e8d9f23ebe0b6d7e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use set -o in listalloptions to avoid kshoptionprint</title>
<updated>2005-07-10T17:17:58Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2005-07-10T17:17:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6f518486a24e75e89f342b4a37e43d9e3c15f660'/>
<id>urn:sha1:6f518486a24e75e89f342b4a37e43d9e3c15f660</id>
<content type='text'>
</content>
</entry>
<entry>
<title>zargs: add -I and -L options of xargs.</title>
<updated>2005-06-20T15:15:57Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2005-06-20T15:15:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=37738519483c8c5ae6a93a9177c273e1fd8dabc6'/>
<id>urn:sha1:37738519483c8c5ae6a93a9177c273e1fd8dabc6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>20244: fix bug with zed-iting autoloaded functions.</title>
<updated>2004-08-10T23:34:58Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2004-08-10T23:34:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4f5e97a0bf849da13eac76628c5cf64bc88396c7'/>
<id>urn:sha1:4f5e97a0bf849da13eac76628c5cf64bc88396c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>20089: various zed improvements</title>
<updated>2004-06-23T16:14:24Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2004-06-23T16:14:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=fd1676f3973eb2c72655f4249675c0f39dac73c6'/>
<id>urn:sha1:fd1676f3973eb2c72655f4249675c0f39dac73c6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use the new `history -ap' command to restore the history instead of</title>
<updated>2004-05-21T20:05:03Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-05-21T20:05:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6cfedab7ee4e1c5da78dba4963bf0cb3454f0fa5'/>
<id>urn:sha1:6cfedab7ee4e1c5da78dba4963bf0cb3454f0fa5</id>
<content type='text'>
using a trap function.
</content>
</entry>
<entry>
<title>Use the new history push/pop options to fc to save and restore the</title>
<updated>2004-05-20T22:23:11Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-05-20T22:23:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6b83748946e9405bc9df946a44e776e4adcff867'/>
<id>urn:sha1:6b83748946e9405bc9df946a44e776e4adcff867</id>
<content type='text'>
current history buffer.
</content>
</entry>
<entry>
<title>19936: zcalc temp history file name</title>
<updated>2004-05-13T17:08:03Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2004-05-13T17:08:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=aff4313b12df835e32b767aa8b1a1c4013514a44'/>
<id>urn:sha1:aff4313b12df835e32b767aa8b1a1c4013514a44</id>
<content type='text'>
</content>
</entry>
<entry>
<title>19733 with docs tweaked: keymaps for vared and zed</title>
<updated>2004-04-06T09:16:57Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2004-04-06T09:16:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4688564c0a891a2e3fa73255cf907dd269a62a2e'/>
<id>urn:sha1:4688564c0a891a2e3fa73255cf907dd269a62a2e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: change "mv" to "mv -f" when backing up .zwc files in zrecompile</title>
<updated>2004-03-31T16:48:37Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2004-03-31T16:48:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1f03c7a78412984bd7153c996be2a9c530893bf2'/>
<id>urn:sha1:1f03c7a78412984bd7153c996be2a9c530893bf2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>19382: improved zmv documentation</title>
<updated>2004-01-16T15:29:26Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2004-01-16T15:29:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4cddde6df564b295bbb60e226177f005582bc5f5'/>
<id>urn:sha1:4cddde6df564b295bbb60e226177f005582bc5f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>18472: spelling corrections</title>
<updated>2003-04-25T11:18:50Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@users.sourceforge.net</email>
</author>
<published>2003-04-25T11:18:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe'/>
<id>urn:sha1:a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>18450: set $compcontext to -math- to complete math context within zcalc</title>
<updated>2003-04-18T13:20:50Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@users.sourceforge.net</email>
</author>
<published>2003-04-18T13:20:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8da5114e53e62ed1c52f8aad7ba60001a3db4c5b'/>
<id>urn:sha1:8da5114e53e62ed1c52f8aad7ba60001a3db4c5b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Massive improvement of --max-procs handling; reorganize option parsing to</title>
<updated>2002-09-04T06:28:37Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2002-09-04T06:28:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=62878a462d02121852870fd9365de1d182925bb6'/>
<id>urn:sha1:62878a462d02121852870fd9365de1d182925bb6</id>
<content type='text'>
do only what's necessary for each early-bailout test; bump version number.
</content>
</entry>
<entry>
<title>Implement --max-procs.</title>
<updated>2002-09-02T20:37:36Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2002-09-02T20:37:36Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a48730009255aa28931d08bec41ba6ad95e3288b'/>
<id>urn:sha1:a48730009255aa28931d08bec41ba6ad95e3288b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add zargs.</title>
<updated>2002-09-02T18:27:07Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2002-09-02T18:27:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e43fd50592a45cba7e44655a32bccfa84209d5cf'/>
<id>urn:sha1:e43fd50592a45cba7e44655a32bccfa84209d5cf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Based on users/5283: Implement xargs-like segmenting of argument list, with</title>
<updated>2002-09-02T18:26:00Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2002-09-02T18:26:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=61dcbe0da3a17b83a59201a49d9792384e118092'/>
<id>urn:sha1:61dcbe0da3a17b83a59201a49d9792384e118092</id>
<content type='text'>
a command called on each segment.
</content>
</entry>
<entry>
<title>Add "relative".</title>
<updated>2002-04-23T15:41:22Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2002-04-23T15:41:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=61cd3f54eb167ee7b17cb057c7652dc88784f09c'/>
<id>urn:sha1:61cd3f54eb167ee7b17cb057c7652dc88784f09c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/4851: Convert a full path to a path relative to a directory.</title>
<updated>2002-04-23T15:39:49Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2002-04-23T15:39:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=711592bbb72872ce8314706d218f9d28bd9ecdc3'/>
<id>urn:sha1:711592bbb72872ce8314706d218f9d28bd9ecdc3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>+ Added -W to auto-convert wildcards in both the find and replace strings.</title>
<updated>2002-03-30T19:30:11Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2002-03-30T19:30:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8224baf73c89f478eb9584c9c59b6e2d82b77306'/>
<id>urn:sha1:8224baf73c89f478eb9584c9c59b6e2d82b77306</id>
<content type='text'>
+ Fixed the usage message to output the '$' args and '\' characters (they
  were getting eaten).
</content>
</entry>
</feed>
