<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zsh, branch mikachu/redrawhook</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/zsh/atom/?h=mikachu%2Fredrawhook</id>
<link rel='self' href='http://git.sudomsg.com/mirror/zsh/atom/?h=mikachu%2Fredrawhook'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/'/>
<updated>2015-09-27T00:28:41Z</updated>
<entry>
<title>Add match-bracket widget that takes a position and/or parameter to store result, and does no weird vi stuff</title>
<updated>2015-09-27T00:28:41Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-06T20:25:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=72f7f904e8734c2ee73b77e35e60ecb86148bc60'/>
<id>urn:sha1:72f7f904e8734c2ee73b77e35e60ecb86148bc60</id>
<content type='text'>
I use this in my zle-line-pre-redraw hook,

  local -a hackcol=(red cyan)
  local mpos cpos off
  for off in 0 1; do
    (( cpos = CURSOR - off ))
    if (( cpos &gt;= 0 )) &amp;&amp; zle .match-bracket $cpos mpos; then
      region_highlight+=("$((cpos)) $((cpos+1)) bold,bg=${hackcol[2]},fg=black"
                         "$((mpos)) $((mpos+1)) bold,bg=${hackcol[1]},fg=black")
      break
    fi
  done
</content>
</entry>
<entry>
<title>Use a helper function for redraw hook and call from recursiveedit too</title>
<updated>2015-09-27T00:17:07Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-06T21:44:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8ab150a867ff9ab87d2efdf5cfce919614f2ddbb'/>
<id>urn:sha1:8ab150a867ff9ab87d2efdf5cfce919614f2ddbb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move zle-line-pre-redraw out of zrefresh into zle event handling loop, if it can be called that</title>
<updated>2015-09-27T00:16:59Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-05T13:59:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f04d219544e77e1bc83670eb1b8d8beb7f4f5c95'/>
<id>urn:sha1:f04d219544e77e1bc83670eb1b8d8beb7f4f5c95</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix paste highlighting with zle-line-pre-redraw</title>
<updated>2015-09-27T00:11:14Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-08-31T06:35:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a36d7ab99b4a5b1c10bc68828942faf69c35c0d0'/>
<id>urn:sha1:a36d7ab99b4a5b1c10bc68828942faf69c35c0d0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add zle-line-pre-redraw</title>
<updated>2015-09-27T00:11:09Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2009-11-29T10:07:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9b07c6fe5ae9fb3791ed4e10841422730501aca2'/>
<id>urn:sha1:9b07c6fe5ae9fb3791ed4e10841422730501aca2</id>
<content type='text'>
Go to some lengths to preserve $LASTWIDGET in pre-redraw
means we can't use the callzlehook function

has same workaround as 29643
</content>
</entry>
<entry>
<title>36641: fix multibyte handling in incremental search during menu selection</title>
<updated>2015-09-26T20:46:20Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-26T20:46:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=50721a1986a3637e923ccc4531135b8aa39c8e70'/>
<id>urn:sha1:50721a1986a3637e923ccc4531135b8aa39c8e70</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted (see 36633): _hg: Enable --option=value syntax and disable '-xy Xarg Yarg' syntax</title>
<updated>2015-09-26T00:21:18Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-26T00:19:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=92584634d3d39e9ca64475ae5af8010e2ccebe24'/>
<id>urn:sha1:92584634d3d39e9ca64475ae5af8010e2ccebe24</id>
<content type='text'>
This simply removes the '-w' argument to _arguments and changes
{-x+,--foo} to {-x+,--foo=} throughout the file.
</content>
</entry>
<entry>
<title>unposted: zle: Document the C helper function processcmd().</title>
<updated>2015-09-25T23:38:41Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-25T23:38:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8165b488cb223ac58629d99f8df1bda930dd29c0'/>
<id>urn:sha1:8165b488cb223ac58629d99f8df1bda930dd29c0</id>
<content type='text'>
Also, tweak the docstring of zlelineasstring().
</content>
</entry>
<entry>
<title>36626: _hg: completion for 'hg bookmarks'</title>
<updated>2015-09-25T23:20:09Z</updated>
<author>
<name>Christoph Mathys</name>
<email>eraserix@gmail.com</email>
</author>
<published>2015-09-25T23:19:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=61fa5f66f05c85e290d50df860708e80221011c9'/>
<id>urn:sha1:61fa5f66f05c85e290d50df860708e80221011c9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36630: new function zsh_directory_name_generic</title>
<updated>2015-09-25T20:30:34Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-25T20:30:34Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=649d06a8cdd9948e3d49fa717f9088d8a87a6262'/>
<id>urn:sha1:649d06a8cdd9948e3d49fa717f9088d8a87a6262</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36623: document bracketed-paste-magic and url-quote-magic; add cross-reference to vim text object widgets</title>
<updated>2015-09-25T01:46:27Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-25T01:46:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=377e2400b7b6fc21ff333791461d615538b18cb9'/>
<id>urn:sha1:377e2400b7b6fc21ff333791461d615538b18cb9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36603: glob: fix dirfd leak during Y shortcut qualifier</title>
<updated>2015-09-24T18:52:56Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-24T18:51:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=bd5806aa0a98d8de6e1b6e7e4b7694b89952f08d'/>
<id>urn:sha1:bd5806aa0a98d8de6e1b6e7e4b7694b89952f08d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: _hg: Declare $expl as an array</title>
<updated>2015-09-24T16:15:18Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-24T16:15:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4c935b9f85d25999a2ff9844274827f7905380f3'/>
<id>urn:sha1:4c935b9f85d25999a2ff9844274827f7905380f3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36613: _hg: extend completion for hg push to support branch and bookmark</title>
<updated>2015-09-24T16:12:57Z</updated>
<author>
<name>Christoph Mathys</name>
<email>eraserix@gmail.com</email>
</author>
<published>2015-09-24T16:12:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1aafc028b392ae85f6670a1c0b8cf00da975e304'/>
<id>urn:sha1:1aafc028b392ae85f6670a1c0b8cf00da975e304</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36604: fix getopts+shift calculation</title>
<updated>2015-09-24T06:16:38Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-24T06:16:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8d5c0c77609d814de7c0749602a595236f76b487'/>
<id>urn:sha1:8d5c0c77609d814de7c0749602a595236f76b487</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: Followup to 36586: Change C99 comment syntax to the C89 syntax.</title>
<updated>2015-09-23T21:41:13Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-23T21:40:34Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1b5987cdb11253e2f399bfff72016af22bad9240'/>
<id>urn:sha1:1b5987cdb11253e2f399bfff72016af22bad9240</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36571: Completion for zsocket and updated losetup's completion</title>
<updated>2015-09-22T23:14:08Z</updated>
<author>
<name>Eric Cook</name>
<email>llua@gmx.com</email>
</author>
<published>2015-09-21T00:36:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=002d68525c9de1230565d1a1c317996635d39172'/>
<id>urn:sha1:002d68525c9de1230565d1a1c317996635d39172</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: replace multi-byte curly-quotes with plain quotes in ChangeLog entry</title>
<updated>2015-09-22T23:13:26Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-22T23:13:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0f2f34363d24974dcdcb9aecb03df139969b3d18'/>
<id>urn:sha1:0f2f34363d24974dcdcb9aecb03df139969b3d18</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36587: use +LINE:COLUMN to place the cursor when invoking emacs variants, for emacsclient</title>
<updated>2015-09-22T15:52:52Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-22T15:52:52Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=56ed4df8988249338b0f8f2d999df4217ca533e6'/>
<id>urn:sha1:56ed4df8988249338b0f8f2d999df4217ca533e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36586: fix completion match right anchor</title>
<updated>2015-09-22T09:18:41Z</updated>
<author>
<name>Han Pingtian</name>
<email>hanpt@linux.vnet.ibm.com</email>
</author>
<published>2015-09-21T21:55:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=acf5bd766a7b5d656cdf1c636c8508492c1aadf4'/>
<id>urn:sha1:acf5bd766a7b5d656cdf1c636c8508492c1aadf4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36538: fix description of b and B completion match anchors</title>
<updated>2015-09-22T08:58:59Z</updated>
<author>
<name>Han Pingtian</name>
<email>hanpt@linux.vnet.ibm.com</email>
</author>
<published>2015-09-15T08:23:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d2910fd64f584d57dbf544db8aa36ac909ea212f'/>
<id>urn:sha1:d2910fd64f584d57dbf544db8aa36ac909ea212f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36578: option in a set has key "set-opt" in $opt_args</title>
<updated>2015-09-22T02:16:32Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-09-22T02:16:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=53fcadc1f8a735ee0194ec83bebe1afd6ff14d1c'/>
<id>urn:sha1:53fcadc1f8a735ee0194ec83bebe1afd6ff14d1c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36580: don't copy empty buffer in compmatch.</title>
<updated>2015-09-21T19:33:58Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-21T19:33:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=729f6ddfff8a229c404f0ec2b9d83c89395e541d'/>
<id>urn:sha1:729f6ddfff8a229c404f0ec2b9d83c89395e541d</id>
<content type='text'>
Also check if length is non-zero when buffer is empty.
</content>
</entry>
<entry>
<title>36577: supplement 36559 to using LONG_MAX for 64-bit long</title>
<updated>2015-09-21T13:42:22Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-21T13:39:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8b84419f45298ee564bd6fa2b531c8991b2a1983'/>
<id>urn:sha1:8b84419f45298ee564bd6fa2b531c8991b2a1983</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36576: _tmux: Fix tmux homepage URI</title>
<updated>2015-09-21T12:56:50Z</updated>
<author>
<name>Frank Terbeck</name>
<email>ft@bewatermyfriend.org</email>
</author>
<published>2015-09-21T12:41:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5476e011f16664e601092c1e94e3332efe80720f'/>
<id>urn:sha1:5476e011f16664e601092c1e94e3332efe80720f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36575: _tmux: ‘lock-server’ option is gone in tmux.git</title>
<updated>2015-09-21T12:56:50Z</updated>
<author>
<name>Frank Terbeck</name>
<email>ft@bewatermyfriend.org</email>
</author>
<published>2015-09-21T12:41:40Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d4a640775f8e6aad3a32a2ebcf4d049d728a9e8b'/>
<id>urn:sha1:d4a640775f8e6aad3a32a2ebcf4d049d728a9e8b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36556: complete two or more options for zsh</title>
<updated>2015-09-21T12:38:41Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-09-21T12:38:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9b35a04f98300469ad33b44849920c4c3cb2d986'/>
<id>urn:sha1:9b35a04f98300469ad33b44849920c4c3cb2d986</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: typo in 36559</title>
<updated>2015-09-21T12:27:35Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-21T12:27:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6fa5f0612b9866ead0859cd5bbbce9fd8c6488e2'/>
<id>urn:sha1:6fa5f0612b9866ead0859cd5bbbce9fd8c6488e2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36574: new completion for the lldb debbuger</title>
<updated>2015-09-21T12:08:29Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-09-21T12:08:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=05ec830c943378baf8b9feeb69b97ba6c8eaf257'/>
<id>urn:sha1:05ec830c943378baf8b9feeb69b97ba6c8eaf257</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cf. users/20606: zcompile prepares scripts for sourcing, not for execution</title>
<updated>2015-09-20T06:06:55Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-20T06:06:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=bdcdb562d97f7ed604ead37ccda52792dff9a93f'/>
<id>urn:sha1:bdcdb562d97f7ed604ead37ccda52792dff9a93f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36566: check for regular file before lseek()</title>
<updated>2015-09-20T06:05:44Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-20T06:05:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e61717b6061e77b582313ffc883f40bc5e11ae70'/>
<id>urn:sha1:e61717b6061e77b582313ffc883f40bc5e11ae70</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36562: sanitize $PWD on import, per POSIX</title>
<updated>2015-09-20T06:03:39Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-20T06:03:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4375d7b905dca266c3a14bf603a908eb7c3dfbf2'/>
<id>urn:sha1:4375d7b905dca266c3a14bf603a908eb7c3dfbf2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36559: test earlier for overflow in pattern range</title>
<updated>2015-09-19T22:08:46Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-19T22:08:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=df0d86b847fbf5bd1ad383531cd52b261dc07717'/>
<id>urn:sha1:df0d86b847fbf5bd1ad383531cd52b261dc07717</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: fix typo in test</title>
<updated>2015-09-19T19:22:19Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-19T19:22:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cc44b10da1bcc4af87fb7bb0336177a31798608e'/>
<id>urn:sha1:cc44b10da1bcc4af87fb7bb0336177a31798608e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cf. 36554: remove unnecessary pointer dereference</title>
<updated>2015-09-19T16:34:05Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-19T16:34:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=07796811b03f58f2f143cd2860c67c9896c71acb'/>
<id>urn:sha1:07796811b03f58f2f143cd2860c67c9896c71acb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cf. users/20586: clean up cross-references to the "Autoloading Functions" doc</title>
<updated>2015-09-18T17:10:35Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-18T17:10:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=18d82a6c401758e8bd49fef9478168c68d7d2652'/>
<id>urn:sha1:18d82a6c401758e8bd49fef9478168c68d7d2652</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36552 plus test: fix Nularg string in quotestring(QT_DOLLARS)</title>
<updated>2015-09-18T04:44:14Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-18T04:44:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=18130bed7fa032513261d426b8c3915cf11e20c1'/>
<id>urn:sha1:18130bed7fa032513261d426b8c3915cf11e20c1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: docs: Typo fixes</title>
<updated>2015-09-14T20:33:03Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-14T20:32:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9955bbdb9faeac388abec68c6b5b976bce27df92'/>
<id>urn:sha1:9955bbdb9faeac388abec68c6b5b976bce27df92</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted (see 36526): Update changelog for 36443.</title>
<updated>2015-09-14T20:31:43Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-14T20:31:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=aeb1ac6a9cbbf4c135dc2feedc2322e12bb7e549'/>
<id>urn:sha1:aeb1ac6a9cbbf4c135dc2feedc2322e12bb7e549</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36525: revert only the selfinsert() bit of 36496</title>
<updated>2015-09-13T03:49:13Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-13T03:49:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8a818381cfa843f6bdc25e3517500da31d63c282'/>
<id>urn:sha1:8a818381cfa843f6bdc25e3517500da31d63c282</id>
<content type='text'>
selfinsert() may be called with incomplete wide character processing from
places other than getkeymapcmd()
</content>
</entry>
<entry>
<title>36523: Completion/…/_gphoto2: Replace --delete-files with --delete-file</title>
<updated>2015-09-13T00:26:02Z</updated>
<author>
<name>Axel Beckert</name>
<email>abe@deuxchevaux.org</email>
</author>
<published>2015-09-13T00:02:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9cb8c3f4b5d9918028791d975cf3aa7d745b4b22'/>
<id>urn:sha1:9cb8c3f4b5d9918028791d975cf3aa7d745b4b22</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: revert 36483 as multibyte is now handled by "zle .read-command"; adapt to new default behavior of zle_highlight for paste</title>
<updated>2015-09-13T00:16:43Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-13T00:16:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b957cdd21a8997739aba48c3637fc3b9f88b2168'/>
<id>urn:sha1:b957cdd21a8997739aba48c3637fc3b9f88b2168</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36522: unmetafy the argument of "zle -U"</title>
<updated>2015-09-12T23:13:01Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-12T23:13:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8e77fcb050ed09042cc2464f804ac023c0f88b42'/>
<id>urn:sha1:8e77fcb050ed09042cc2464f804ac023c0f88b42</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36509: allocate hash table nodes with zshcalloc() to avoid garbage flag values</title>
<updated>2015-09-12T16:53:39Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-12T16:53:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6ff0628182ac74bbf22dc02edcc9a148f12767db'/>
<id>urn:sha1:6ff0628182ac74bbf22dc02edcc9a148f12767db</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36491: Multibyte support for parameter expansion flags B,E,N</title>
<updated>2015-09-12T11:35:56Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-09-12T11:35:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8b1676e3b7bca183fea725d38d62350d2688078b'/>
<id>urn:sha1:8b1676e3b7bca183fea725d38d62350d2688078b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36443: Set zle_highlight=(paste:standout) by default.</title>
<updated>2015-09-11T21:49:39Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-07T15:50:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c76f4f96a65c7bfbba2183c422a1fb567069981f'/>
<id>urn:sha1:c76f4f96a65c7bfbba2183c422a1fb567069981f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36443: Revert "35834: strip a final newline from pasted text: inserting is hard to tell apart from accepting it"</title>
<updated>2015-09-11T21:49:16Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-11T21:47:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d37b59fe0969a619f049dee081b15af696070009'/>
<id>urn:sha1:d37b59fe0969a619f049dee081b15af696070009</id>
<content type='text'>
This reverts commit f17eb26a34af69a2238a3d8b46079445e09c096e.

Conflicts:
	ChangeLog
	Src/Zle/zle_misc.c
</content>
</entry>
<entry>
<title>Read full multibyte string early for self-insert</title>
<updated>2015-09-11T20:40:45Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-11T20:40:45Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e1c0a947cc845c71dd844db44016d07922cfcefa'/>
<id>urn:sha1:e1c0a947cc845c71dd844db44016d07922cfcefa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: update internal build string to 5.1.1-dev-0</title>
<updated>2015-09-11T20:23:21Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-11T20:23:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=560a23033d2d0e029bbbcda0366053d8d87a37d9'/>
<id>urn:sha1:560a23033d2d0e029bbbcda0366053d8d87a37d9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: version 5.1.1</title>
<updated>2015-09-11T17:47:56Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-11T17:47:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=68405f31a043bdd5bf338eb06688ed3e1f740937'/>
<id>urn:sha1:68405f31a043bdd5bf338eb06688ed3e1f740937</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36489: fix curses bug with hash table for colours</title>
<updated>2015-09-11T17:45:01Z</updated>
<author>
<name>Sebastian Gniazdowski</name>
<email>sgniazdowski@gmail.com</email>
</author>
<published>2015-09-11T17:35:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=89b55d4a5f5b51590aefa3c8a5235674e916ff25'/>
<id>urn:sha1:89b55d4a5f5b51590aefa3c8a5235674e916ff25</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36483: handle incomplete multibyte characters in bracketed-paste-magi</title>
<updated>2015-09-11T17:40:22Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-11T17:40:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f5e8527a8c62dd59e3883b25d9c3009fb7caf4ab'/>
<id>urn:sha1:f5e8527a8c62dd59e3883b25d9c3009fb7caf4ab</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update news for 5.1.1 with minor features just added.</title>
<updated>2015-09-11T08:19:42Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-11T08:19:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7fca9bb05b5f612337f6b1863b585a9d026b6a61'/>
<id>urn:sha1:7fca9bb05b5f612337f6b1863b585a9d026b6a61</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36445: Expose yankb, yanke, ZLE_YANK to widgets.</title>
<updated>2015-09-10T19:14:34Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-10T19:14:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c088906423ba22eef8d57c84b396f8d5be83ca45'/>
<id>urn:sha1:c088906423ba22eef8d57c84b396f8d5be83ca45</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36478: Add [[:INCOMPLETE:]] and [[:INVALID:]] pattern tests.</title>
<updated>2015-09-10T19:05:48Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-10T19:05:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e86b3cce47e62c263301322ce24b56cf04b8cdb8'/>
<id>urn:sha1:e86b3cce47e62c263301322ce24b56cf04b8cdb8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36470: Auxiliary to 36468, return an empty buffer from zleread() if a widget exits</title>
<updated>2015-09-10T16:10:08Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-10T16:10:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3bca11c35cf9185c28a9b01e866bc5c7b1a96bfd'/>
<id>urn:sha1:3bca11c35cf9185c28a9b01e866bc5c7b1a96bfd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36468: Fix infinite loop exiting from Zle widget.</title>
<updated>2015-09-10T15:02:27Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-10T15:02:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=86229fdf09e2c69576000b0f83edb35148096452'/>
<id>urn:sha1:86229fdf09e2c69576000b0f83edb35148096452</id>
<content type='text'>
If the exit was while we were waiting to complete a lexical expression
we might not exit from the loop.
</content>
</entry>
<entry>
<title>36460: Discard benign error when no one is reading from pipe</title>
<updated>2015-09-10T08:20:38Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-10T08:20:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ca9fdda4088c7e6ff8cccdf59bbe770fe8e739da'/>
<id>urn:sha1:ca9fdda4088c7e6ff8cccdf59bbe770fe8e739da</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36422: add missing unmeta()</title>
<updated>2015-09-08T09:12:10Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2015-09-08T09:12:10Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=45e67c35529a27c2d228c616e5bafad2164e9bd6'/>
<id>urn:sha1:45e67c35529a27c2d228c616e5bafad2164e9bd6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36437: Document interaction of $region_highlight and $zle_highlight.</title>
<updated>2015-09-07T21:17:40Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-07T21:17:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8931e47b8d8f9194cc5424bc15e546c037a891e7'/>
<id>urn:sha1:8931e47b8d8f9194cc5424bc15e546c037a891e7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: ZLE_STATE: fix obvious documentation typo.</title>
<updated>2015-09-07T21:14:15Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-07T21:14:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1cba80bf08dc9451e8643588fcb308030bb4c4ee'/>
<id>urn:sha1:1cba80bf08dc9451e8643588fcb308030bb4c4ee</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36441: _git: Fixed typo in --author-date-order description</title>
<updated>2015-09-07T21:11:10Z</updated>
<author>
<name>James Clarke</name>
<email>jrtc27@jrtc27.com</email>
</author>
<published>2015-09-07T11:49:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=bddd99d98a0031742b25785017981a6da89ca4bd'/>
<id>urn:sha1:bddd99d98a0031742b25785017981a6da89ca4bd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: make 5.1-test-1 with updates for 5.1.1</title>
<updated>2015-09-06T17:12:09Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-06T17:12:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=eaea1dc23c4a4e7b65046edd7f3d53a81e39e27b'/>
<id>urn:sha1:eaea1dc23c4a4e7b65046edd7f3d53a81e39e27b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: typo in comment</title>
<updated>2015-09-06T10:35:14Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-05T13:59:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6e7ecb35a030dd1014a0a24ecef661c3e8deed54'/>
<id>urn:sha1:6e7ecb35a030dd1014a0a24ecef661c3e8deed54</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: Minor documentation tweaks.</title>
<updated>2015-09-05T10:47:53Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-05T10:47:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a4f087b98ee7973f48cf5adb23525dbe2c47a9d7'/>
<id>urn:sha1:a4f087b98ee7973f48cf5adb23525dbe2c47a9d7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36410: vcs_info git: Present merge heads as patches</title>
<updated>2015-09-05T10:47:44Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-03T09:24:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=880579dc1e368bd6111b6f2d4c4449f4d42cd1b3'/>
<id>urn:sha1:880579dc1e368bd6111b6f2d4c4449f4d42cd1b3</id>
<content type='text'>
This shows, during 'git merge', the revision hashes of the "remote" head
(the one that will become second parent of the commit) in the %m expando.

Review-by: Frank Terbeck
</content>
</entry>
<entry>
<title>unposted: typo in change log</title>
<updated>2015-09-04T12:48:20Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-04T12:48:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5445d5f0cc26f03eda26f8c74723a8fb65466586'/>
<id>urn:sha1:5445d5f0cc26f03eda26f8c74723a8fb65466586</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36421: fix breakage in pattern change in 36415</title>
<updated>2015-09-04T12:40:28Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-04T12:40:28Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=938c4c1e4a3c3e6b5a43baf1147892e6580b0114'/>
<id>urn:sha1:938c4c1e4a3c3e6b5a43baf1147892e6580b0114</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36417: fix/update top level texinfo menu</title>
<updated>2015-09-04T12:07:33Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-09-04T12:07:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3a676eab44a69447c36ec75dd54320459d4eaf6c'/>
<id>urn:sha1:3a676eab44a69447c36ec75dd54320459d4eaf6c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36415: remap bytes from invalid multibyte characters.</title>
<updated>2015-09-04T09:07:51Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-04T09:07:51Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f52795ea3e637396ac2bbdef8fa1b1b6f2088db6'/>
<id>urn:sha1:f52795ea3e637396ac2bbdef8fa1b1b6f2088db6</id>
<content type='text'>
These now go to 0xdc00 + index.  If wchar_t is a Unicode code point,
this is by construction an invalid character within the Unicode range.
If it isn't, we would hope the result was no worse than the current
fudge.
</content>
</entry>
<entry>
<title>36416: ^C in getzlequery() just aborts query.</title>
<updated>2015-09-03T16:52:40Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-03T16:52:40Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=32f5d3d8c16b4f3a11fa39c0ee378d72336ba853'/>
<id>urn:sha1:32f5d3d8c16b4f3a11fa39c0ee378d72336ba853</id>
<content type='text'>
Also logical but possibly invisible fix for error propagated
back from listing interface.
</content>
</entry>
<entry>
<title>36403: type -w += suffix alias</title>
<updated>2015-09-03T09:17:39Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-02T15:33:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1ba2fac03d611ca2955e1c019c9cc9189fd2920b'/>
<id>urn:sha1:1ba2fac03d611ca2955e1c019c9cc9189fd2920b</id>
<content type='text'>
This makes 'type -w' distinguish suffix aliases from regular aliases,
like bare 'type' already does.

Use-case: detecting programmatically whether the command word is indeed
a valid command word (see &lt;https://github.com/zsh-users/zsh-syntax-highlighting/issues/126&gt;)
</content>
</entry>
<entry>
<title>Add ChangeLog entry for tests from previous commit</title>
<updated>2015-09-03T02:19:20Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-03T02:19:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8dfdca8afd77c39a2bb6542cfd20488059de09d1'/>
<id>urn:sha1:8dfdca8afd77c39a2bb6542cfd20488059de09d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36393: process queued signals during dotrap()</title>
<updated>2015-09-03T02:11:54Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-03T02:11:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9f5dffa1f33ec43c306bdf3c87cebba5fcc95b64'/>
<id>urn:sha1:9f5dffa1f33ec43c306bdf3c87cebba5fcc95b64</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36378: skip directories when looking for files to autoload</title>
<updated>2015-09-02T19:19:28Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-09-02T19:19:28Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cdbd1b258192fa27c17241877f460c5543827759'/>
<id>urn:sha1:cdbd1b258192fa27c17241877f460c5543827759</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: fix egregious typo</title>
<updated>2015-09-02T13:26:14Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-02T13:26:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=dde07f7436379f7bd8811b6252737b67b0cea94b'/>
<id>urn:sha1:dde07f7436379f7bd8811b6252737b67b0cea94b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36399: Shell code text with multiple here documents wasn't shown properly.</title>
<updated>2015-09-02T13:20:44Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-02T13:20:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0e63286bd47bab051d49597d3df160b1e9dbb6a3'/>
<id>urn:sha1:0e63286bd47bab051d49597d3df160b1e9dbb6a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36347: Fix appending empty array to associations</title>
<updated>2015-09-01T21:20:05Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-08-31T12:52:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8e3ca08f13f198caa7cd7dc2bb37863238bea4f2'/>
<id>urn:sha1:8e3ca08f13f198caa7cd7dc2bb37863238bea4f2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36380: Avoid gcc case syntax</title>
<updated>2015-09-01T21:18:17Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-09-01T21:14:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cbe00216fe2b61a4d00cd6bd8189063efc5e132a'/>
<id>urn:sha1:cbe00216fe2b61a4d00cd6bd8189063efc5e132a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36376: handle signals during read1char() so it is possible to interrupt correct/correctall prompts</title>
<updated>2015-09-01T18:26:06Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-09-01T18:26:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3747f6b6ab20ac9082909dd0cb3376e4e35f2c6c'/>
<id>urn:sha1:3747f6b6ab20ac9082909dd0cb3376e4e35f2c6c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36365: magic-space could delete the reset of the line.</title>
<updated>2015-09-01T10:45:23Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-01T10:45:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=21382e0b20c697e83d0bc903a5e17b75e5979995'/>
<id>urn:sha1:21382e0b20c697e83d0bc903a5e17b75e5979995</id>
<content type='text'>
If we got a LEXERR, which didn't necessarily mean an actual error,
just something the rather nasty ctxtlex() got confused by, we
didn't scan the reset of the line.
</content>
</entry>
<entry>
<title>unposted: Update internal version to 5.1-dev-0.</title>
<updated>2015-09-01T08:58:43Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-09-01T08:58:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b73e4442e850a565525b7ed75f2a7b01698499d6'/>
<id>urn:sha1:b73e4442e850a565525b7ed75f2a7b01698499d6</id>
<content type='text'>
Avoids installation clash of develpment build with 5.1 release.
</content>
</entry>
<entry>
<title>36353: _git: Unbreak after previous.</title>
<updated>2015-09-01T04:37:39Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-09-01T04:37:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6e825e7b2556f8d10be27087ca8b9ecd77c6cddc'/>
<id>urn:sha1:6e825e7b2556f8d10be27087ca8b9ecd77c6cddc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36328 + 36340: _git-cherry-pick: Complete other branches only</title>
<updated>2015-08-30T22:51:15Z</updated>
<author>
<name>Mateusz Karbowy</name>
<email>mateusz.karbowy@gmail.com</email>
</author>
<published>2015-08-30T22:42:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a428c6b62cb227cba0f0cd32b8c85dc33042ac71'/>
<id>urn:sha1:a428c6b62cb227cba0f0cd32b8c85dc33042ac71</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36338: Replace "5.0.9" with "5.1" in source comments</title>
<updated>2015-08-30T20:47:00Z</updated>
<author>
<name>Axel Beckert</name>
<email>abe@deuxchevaux.org</email>
</author>
<published>2015-08-30T20:47:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a9df6aaa702abf761b155cd842a7f6917be44139'/>
<id>urn:sha1:a9df6aaa702abf761b155cd842a7f6917be44139</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Relase zsh 5.1</title>
<updated>2015-08-30T18:10:46Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-08-30T18:10:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=11189c6df725d682a5b0759f83d0bd5afc0e330a'/>
<id>urn:sha1:11189c6df725d682a5b0759f83d0bd5afc0e330a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36321: _debcheckout: New completion.</title>
<updated>2015-08-29T16:12:25Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-08-29T16:12:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=2f4b690c7a32f38422f0f2b9c4d231f590145091'/>
<id>urn:sha1:2f4b690c7a32f38422f0f2b9c4d231f590145091</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36306: _subversion: Complete --show-item values</title>
<updated>2015-08-28T23:36:25Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-08-27T22:02:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d2e920d5d089e1d60a5bfefa7f0426069fa44c2a'/>
<id>urn:sha1:d2e920d5d089e1d60a5bfefa7f0426069fa44c2a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/20475: document cdr stores unique entry of most recent use</title>
<updated>2015-08-28T10:04:02Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-08-28T10:04:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=945136e75283e9409b5a668c6b84b4900a5fcb12'/>
<id>urn:sha1:945136e75283e9409b5a668c6b84b4900a5fcb12</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/20466 plus comment: change test for skipping strftime extensions.</title>
<updated>2015-08-28T08:42:31Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-08-28T08:42:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=946e5d89a928fb1f1fa371f3eb5b48b48be24245'/>
<id>urn:sha1:946e5d89a928fb1f1fa371f3eb5b48b48be24245</id>
<content type='text'>
This test is known to fail on Solaris, but seems to work in other
common implementations.  Hence there seems no point in having the
release fall over on this test.  Needs further investigation later.
</content>
</entry>
<entry>
<title>36314: Avoid using short_loops syntax in distributed files</title>
<updated>2015-08-28T07:37:37Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2012-03-17T20:51:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=095dd71cc01cb62514138841aad07c9ddb5465f6'/>
<id>urn:sha1:095dd71cc01cb62514138841aad07c9ddb5465f6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36302: attr: Fix compilation with libcap 2.24</title>
<updated>2015-08-28T03:12:29Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2015-08-27T18:58:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9ca9a092deed209a2591c38c8fe1fe6c0debff7d'/>
<id>urn:sha1:9ca9a092deed209a2591c38c8fe1fe6c0debff7d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: _subversion: Avoid SHORT_LOOPS</title>
<updated>2015-08-27T23:15:03Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-08-27T22:01:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d6ca3bc4b97f756dee2cbb738a0e835b97876a8c'/>
<id>urn:sha1:d6ca3bc4b97f756dee2cbb738a0e835b97876a8c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36304: _git-cat-file: Fix regression in 36237</title>
<updated>2015-08-27T23:14:57Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-08-27T22:45:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=63b1dcd284df2a5dbb37bb0af3cdd13553576a85'/>
<id>urn:sha1:63b1dcd284df2a5dbb37bb0af3cdd13553576a85</id>
<content type='text'>
This broke 'git cat-file blob origin:Etc/&lt;TAB&gt;'.
</content>
</entry>
<entry>
<title>cf. Axel Beckert 36292: discard even more extraneous stderr in "hang" test</title>
<updated>2015-08-27T16:21:18Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-08-27T16:21:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=51f5898dc0209684b9c468f0dc5500e86fc16325'/>
<id>urn:sha1:51f5898dc0209684b9c468f0dc5500e86fc16325</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36288: refine 36825, slightly different test for redirect context</title>
<updated>2015-08-27T05:16:12Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-08-27T05:16:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=85645fd683761090e55b9979cd3a4115dfec23c8'/>
<id>urn:sha1:85645fd683761090e55b9979cd3a4115dfec23c8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36285: update 36025, context cannot be command and redirect at the same time, redirect wins</title>
<updated>2015-08-27T04:50:13Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-08-27T04:50:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8186e9c94b6536b7e9ed8b40c467922c8d639f6d'/>
<id>urn:sha1:8186e9c94b6536b7e9ed8b40c467922c8d639f6d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36282: discard stderr of "hang" test</title>
<updated>2015-08-27T04:38:55Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-08-27T04:38:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=caaed169e54d9e409ee77353b1fff1f0ba818aea'/>
<id>urn:sha1:caaed169e54d9e409ee77353b1fff1f0ba818aea</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted: update to 5.0.8-test-3</title>
<updated>2015-08-25T18:11:43Z</updated>
<author>
<name>Peter Stephenson</name>
<email>p.w.stephenson@ntlworld.com</email>
</author>
<published>2015-08-25T18:11:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=2663a0310f03e62a4439602158b956ec08e3f4fd'/>
<id>urn:sha1:2663a0310f03e62a4439602158b956ec08e3f4fd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>36277: _git: Updated for git-clone 2.4.5.</title>
<updated>2015-08-24T11:23:44Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2015-08-24T11:23:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=fdf48d84fa90ae9dbd8a4948000b490de9e486cf'/>
<id>urn:sha1:fdf48d84fa90ae9dbd8a4948000b490de9e486cf</id>
<content type='text'>
</content>
</entry>
</feed>
