<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zsh/Completion/Unix/Command/_make, branch declarednull</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/zsh/atom?h=declarednull</id>
<link rel='self' href='http://git.sudomsg.com/mirror/zsh/atom?h=declarednull'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/'/>
<updated>2020-01-03T22:01:00Z</updated>
<entry>
<title>45196: fix completion after make -C, allowing for -C being used multiple times</title>
<updated>2020-01-03T22:01:00Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>okiddle@yahoo.co.uk</email>
</author>
<published>2020-01-03T22:01:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e6c5482dd8546c62704d14492f302353b16d8245'/>
<id>urn:sha1:e6c5482dd8546c62704d14492f302353b16d8245</id>
<content type='text'>
</content>
</entry>
<entry>
<title>44896: use opt_args to find base directory and use it for $(CURDIR)</title>
<updated>2019-11-24T21:56:21Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>okiddle@yahoo.co.uk</email>
</author>
<published>2019-11-24T21:56:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5df672b9d781e8333f76b41a4fa91df578e0b1c2'/>
<id>urn:sha1:5df672b9d781e8333f76b41a4fa91df578e0b1c2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>44798: completion option update</title>
<updated>2019-10-01T21:10:17Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>okiddle@yahoo.co.uk</email>
</author>
<published>2019-10-01T21:10:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7d2d242b30dad78cc9df81a275324e57c9fedd34'/>
<id>urn:sha1:7d2d242b30dad78cc9df81a275324e57c9fedd34</id>
<content type='text'>
</content>
</entry>
<entry>
<title>44722: _make: use --always-make instead of .PHONY for GNU make</title>
<updated>2019-09-06T06:47:55Z</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2019-09-02T09:13:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=597acaab4fabe6bc277bdf01d118d8be88e825b5'/>
<id>urn:sha1:597acaab4fabe6bc277bdf01d118d8be88e825b5</id>
<content type='text'>
Using ".PHONY" might actually execute (phony) targets then, while
"--always-make" triggers processing of all targets, respecting `-n`
(`--dry-run`).
(This can be seen with `make -nsp .PHONY` in
https://github.com/neomake/neomake/tree/76b110d49a, where it actually
causes infinite processing then)

".PHONY" was used since the beginning here (37012f06a [1]).

As for bmake (which also uses `.PHONY`): there does not appear to be a
similar option for it.
While it might work better there (i.e. not causing targets to be run),
it causes an error at least when testing it quickly - which indicates
that it behaves as if using any other non-existing (or special) target
there maybe:

&gt; bmake: don't know how to make .PHONY. Stop

This was added in ecc0a5ece [2] (workers-39654).

Since it uses `-s -f "$file" -V.ALLTARGETS` with `bmake` before to get
targets explicitly, there might not be a reason for calling `bmake` with
`-nsdg1Fstdout … .PHONY` additionally in the first place?!

1: https://github.com/danielshahaf/zsh/commit/37012f06a
2: https://github.com/danielshahaf/zsh/commit/ecc0a5ece
</content>
</entry>
<entry>
<title>unposted: _make: Allow pasted arguments for GNU make's -j option.</title>
<updated>2018-08-13T11:17:21Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2018-08-13T11:15:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8178698bb2f0f24d97e3ebf9d0dd8bdfb25677d6'/>
<id>urn:sha1:8178698bb2f0f24d97e3ebf9d0dd8bdfb25677d6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>42521 based on 42049 (SATOH Fumiyasu): fix finding of includes in make completion</title>
<updated>2018-03-24T14:11:19Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>okiddle@yahoo.co.uk</email>
</author>
<published>2018-03-24T14:11:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a2459bee7971a46573e9b06b93013336ef6b9651'/>
<id>urn:sha1:a2459bee7971a46573e9b06b93013336ef6b9651</id>
<content type='text'>
make always includes relative to the current directory rather than
relative to the including Makefile.
</content>
</entry>
<entry>
<title>42327: _make: complete _files</title>
<updated>2018-02-11T19:09:30Z</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2018-01-25T21:38:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c18fe510f4321210ddb450cdfa08fbf2bae8a580'/>
<id>urn:sha1:c18fe510f4321210ddb450cdfa08fbf2bae8a580</id>
<content type='text'>
The use case is completing files that are actual targets, generated
using $(wildcard …).

Q: Could this be made to only complete files if make targets and vars
are empty?
</content>
</entry>
<entry>
<title>41971: correctly break out of certain tag loops when there are matches</title>
<updated>2017-11-02T20:36:55Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2017-11-02T20:36:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0ebf336489f288549ce11bc78bbb2289b604959b'/>
<id>urn:sha1:0ebf336489f288549ce11bc78bbb2289b604959b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>39890: typo corrections in completion functions</title>
<updated>2016-11-09T15:55:14Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2016-11-09T15:53:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=370b278565126a0abf3382ba10965e7a1090e7f8'/>
<id>urn:sha1:370b278565126a0abf3382ba10965e7a1090e7f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>39654: (based on patch by Baptiste Daroussin) Better support bmake, FreeBSD's default make(1) implementation.</title>
<updated>2016-10-18T01:39:45Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2016-10-16T16:34:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ecc0a5ece2b3bbccdfb005c59508cec7473b9b06'/>
<id>urn:sha1:ecc0a5ece2b3bbccdfb005c59508cec7473b9b06</id>
<content type='text'>
Don't pass gmake options to bmake.

Add bmake-speciic codepath for completing targets and parsing the makefile.
</content>
</entry>
<entry>
<title>39067: update options to correspond to latest versions of software in various functions</title>
<updated>2016-08-19T16:00:07Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2016-08-19T16:00:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=580698bc7136454941dd6bbc2ca70f240fabc6b7'/>
<id>urn:sha1:580698bc7136454941dd6bbc2ca70f240fabc6b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>37972: Redirect stderr to /dev/null in cases where ${~param} might generate errors</title>
<updated>2016-02-14T21:10:06Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2016-02-14T21:10:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=485cbbb6cc6ac9d7c13a8268b3574829026f3797'/>
<id>urn:sha1:485cbbb6cc6ac9d7c13a8268b3574829026f3797</id>
<content type='text'>
</content>
</entry>
<entry>
<title>35957: fix _make-expandVars()</title>
<updated>2015-08-02T12:12:12Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2015-08-02T11:51:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f4723a0c08ecb9e9260cfac499fb642c0fd5a6bf'/>
<id>urn:sha1:f4723a0c08ecb9e9260cfac499fb642c0fd5a6bf</id>
<content type='text'>
Also use variables set in the command line and environment.
</content>
</entry>
<entry>
<title>35168: Improve parsing of case patterns.</title>
<updated>2015-05-18T08:56:00Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-05-18T08:56:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=52aeb9aaeb4799b760138a7c34b18ede4b47242a'/>
<id>urn:sha1:52aeb9aaeb4799b760138a7c34b18ede4b47242a</id>
<content type='text'>
"|" is now found properly by looking for words that come
from the lexical analyser, rather than hacking a pattern
returned in one dollop.

Update some completion functions that need extra quoting
as a result.

Add test for new parsing.

Update version number to 5.0.8-dev-3 because of wordcode
incompatibility.
</content>
</entry>
<entry>
<title>34980: in completion match new Makefile assignment forms</title>
<updated>2015-04-28T08:27:37Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-04-28T08:27:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8b4c46fb3f85148ca99b3535f755547560b89bc9'/>
<id>urn:sha1:8b4c46fb3f85148ca99b3535f755547560b89bc9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>31840: "read" needs IFS unset to avoid stripping whitespace in makefiles</title>
<updated>2013-10-18T15:35:22Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2013-10-18T15:35:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=87c482d751b9c8211974352139cf7fedb9797f5f'/>
<id>urn:sha1:87c482d751b9c8211974352139cf7fedb9797f5f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>based on 31641, 31642: completion for more make variants</title>
<updated>2013-08-29T09:46:52Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2013-08-29T09:46:52Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=1a4730b8eecc8f0b098203d79b787799770da179'/>
<id>urn:sha1:1a4730b8eecc8f0b098203d79b787799770da179</id>
<content type='text'>
</content>
</entry>
<entry>
<title>31756: further make completion improvements.</title>
<updated>2013-07-25T08:47:47Z</updated>
<author>
<name>Jun T</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2013-07-24T16:14:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c5d9abc6c8f818a3823c70696e412c4496f6a5be'/>
<id>urn:sha1:c5d9abc6c8f818a3823c70696e412c4496f6a5be</id>
<content type='text'>
ake care of mutually exclusive options.
Add _description using $state_descr.
Add completions for --debug=flag.
Fix typo (pointed out by Daniel Shahaf).
</content>
</entry>
<entry>
<title>31525: Fix some options in _make</title>
<updated>2013-07-17T18:27:20Z</updated>
<author>
<name>Jun T</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2013-07-17T15:40:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=29256a7c9656e20fc44ebeb257230ba41c23e74e'/>
<id>urn:sha1:29256a7c9656e20fc44ebeb257230ba41c23e74e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update make completion with gnu options</title>
<updated>2013-07-12T08:37:36Z</updated>
<author>
<name>Nick Cross</name>
<email>zsh@goots.org</email>
</author>
<published>2013-07-11T21:07:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a71b8df9b21bfa3e3cb11ca7c72a56adf5dde7ee'/>
<id>urn:sha1:a71b8df9b21bfa3e3cb11ca7c72a56adf5dde7ee</id>
<content type='text'>
</content>
</entry>
<entry>
<title>users/17856: rewrite _make to use _arguments.</title>
<updated>2013-07-11T10:14:38Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2013-07-11T10:14:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7e17ea8016744fa7066d58eb008e30d3796f755d'/>
<id>urn:sha1:7e17ea8016744fa7066d58eb008e30d3796f755d</id>
<content type='text'>
No new option handling yet, but this should make it easier to add.
</content>
</entry>
<entry>
<title>29365: redefine _make() in _make.</title>
<updated>2011-05-27T00:10:46Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2011-05-27T00:10:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a75cbae6b7bfbaab78e32388e4a4118b3c818e8f'/>
<id>urn:sha1:a75cbae6b7bfbaab78e32388e4a4118b3c818e8f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>29364: partial fix for make completion in dirs with spaces.</title>
<updated>2011-05-24T01:48:12Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2011-05-24T01:48:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5fd16e59db40ae92a0abf4c2681ef9661f2bbba9'/>
<id>urn:sha1:5fd16e59db40ae92a0abf4c2681ef9661f2bbba9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>_make: add _make- prefix to helper functions</title>
<updated>2011-04-27T13:03:41Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2011-04-27T13:03:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6a69eb2978f55cb5b2cd6c75478eb49234f68b26'/>
<id>urn:sha1:6a69eb2978f55cb5b2cd6c75478eb49234f68b26</id>
<content type='text'>
</content>
</entry>
<entry>
<title>28998: use correct return status in _make</title>
<updated>2011-04-15T09:57:40Z</updated>
<author>
<name>Mikael Magnusson</name>
<email>mikachu@gmail.com</email>
</author>
<published>2011-04-15T09:57:40Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=2c6c147bd362d0afa2220cb4505b0af3025f9b21'/>
<id>urn:sha1:2c6c147bd362d0afa2220cb4505b0af3025f9b21</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Baptiste Daroussin: 27431: _make: fix for FreeBSD</title>
<updated>2009-11-24T15:46:54Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-11-24T15:46:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b7c0ab63f342ea97a8aa6cd14003b66e27f946f4'/>
<id>urn:sha1:b7c0ab63f342ea97a8aa6cd14003b66e27f946f4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27430: extend make variable value completion</title>
<updated>2009-11-24T11:04:25Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-11-24T11:04:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d81fb9f1a899e5b82814bf1f4fa488df91382bbf'/>
<id>urn:sha1:d81fb9f1a899e5b82814bf1f4fa488df91382bbf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>27429: _make: restore variable value completion</title>
<updated>2009-11-24T10:14:33Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-11-24T10:14:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=85842387f859c8b84b5f785fa8fce80983913e12'/>
<id>urn:sha1:85842387f859c8b84b5f785fa8fce80983913e12</id>
<content type='text'>
make indentation more standard
</content>
</entry>
<entry>
<title>Michael Hwang &lt;michael.a.hwang@gmail.com&gt;: 27428:</title>
<updated>2009-11-24T10:01:01Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-11-24T10:01:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b97284cde2b68af745869e030d35ef3cb7b9f079'/>
<id>urn:sha1:b97284cde2b68af745869e030d35ef3cb7b9f079</id>
<content type='text'>
improved _make
</content>
</entry>
<entry>
<title>Vincent Lefevre: 24192: make GNU make completion support -include</title>
<updated>2007-12-10T18:05:04Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2007-12-10T18:05:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=72060c47b1ccb33b0c759a57ca909f6ee99ea062'/>
<id>urn:sha1:72060c47b1ccb33b0c759a57ca909f6ee99ea062</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22992: make $? available in exit traps/hooks</title>
<updated>2006-11-10T09:59:26Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-11-10T09:59:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=254b3f1a6b85e6cfefe21fea3d81c3f97c003ec2'/>
<id>urn:sha1:254b3f1a6b85e6cfefe21fea3d81c3f97c003ec2</id>
<content type='text'>
22993: slightly more effective _make variable fix
</content>
</entry>
<entry>
<title>22988: arno: _make fix for special variables</title>
<updated>2006-11-09T10:52:45Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2006-11-09T10:52:45Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=434d55da8b2b52da5c22f918cb182839b4b7222d'/>
<id>urn:sha1:434d55da8b2b52da5c22f918cb182839b4b7222d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>22205: patch from R.Ramkumar to use the argument to -C in make completion.</title>
<updated>2006-02-09T14:51:24Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2006-02-09T14:51:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=21fb933522cd7509c52acf49bf771cec305d6fe8'/>
<id>urn:sha1:21fb933522cd7509c52acf49bf771cec305d6fe8</id>
<content type='text'>
</content>
</entry>
<entry>
<title> * 20906: Completion/Unix/Command/_make: patch from Mike "Stew" O'Connor</title>
<updated>2005-03-02T20:31:17Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2005-03-02T20:31:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b456dfcfbab00a025df7e152fc78ecd255031f44'/>
<id>urn:sha1:b456dfcfbab00a025df7e152fc78ecd255031f44</id>
<content type='text'>
 to limit recursion depth in make completion variable expansion.
</content>
</entry>
<entry>
<title>Don't try to expand a single-character Makefile variable if</title>
<updated>2005-03-02T19:06:23Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2005-03-02T19:06:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=dca8aa342a46d6e58777a5b58d41996fea54954a'/>
<id>urn:sha1:dca8aa342a46d6e58777a5b58d41996fea54954a</id>
<content type='text'>
it is a digit.
</content>
</entry>
<entry>
<title>Use ";&amp;" to have the new "(\$*)" case fall through to the continue.</title>
<updated>2004-11-11T19:05:25Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-11-11T19:05:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e4ba1a2ec8cd6b73d6e931e00e4a5d16e131a473'/>
<id>urn:sha1:e4ba1a2ec8cd6b73d6e931e00e4a5d16e131a473</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Handle $$ when expanding variables.</title>
<updated>2004-11-10T17:28:25Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-11-10T17:28:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=115c000e25f6c5246bbcd5fa5f9a0a5b143179e2'/>
<id>urn:sha1:115c000e25f6c5246bbcd5fa5f9a0a5b143179e2</id>
<content type='text'>
</content>
</entry>
<entry>
<title> * 20539: Completion/Unix/Command/_make: avoid problems minus signs</title>
<updated>2004-11-02T23:26:42Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2004-11-02T23:26:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=07d95ba04c599775fa671df39ff02e50107a373f'/>
<id>urn:sha1:07d95ba04c599775fa671df39ff02e50107a373f</id>
<content type='text'>
 in expandVars().
</content>
</entry>
<entry>
<title>Got rid of "cmdargs" local since it is no longer used.</title>
<updated>2004-10-12T20:05:13Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-10-12T20:05:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=bb5c466af89e4ce61bbecf0b559eab4676456efd'/>
<id>urn:sha1:bb5c466af89e4ce61bbecf0b559eab4676456efd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>This version now uses a zsh function to parse the makefile instead</title>
<updated>2004-10-01T17:16:02Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-10-01T17:16:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4b3edafbbd1b2d6ac645b83713bd0bd45d531d1b'/>
<id>urn:sha1:4b3edafbbd1b2d6ac645b83713bd0bd45d531d1b</id>
<content type='text'>
of awk or perl.  That function has been enhanced to follow includes
and to expand variables (which makes a target such as foo$(EXEEXT)
expand into the right executable extention for the current system).
</content>
</entry>
<entry>
<title> * 20358: Completion/Unix/Command/_make: avoid potential gawk locale bug by not using awk.</title>
<updated>2004-09-30T16:05:47Z</updated>
<author>
<name>Clint Adams</name>
<email>clint@users.sourceforge.net</email>
</author>
<published>2004-09-30T16:05:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0fa7015cc8ae9774c1e449688e29dee0b6aee438'/>
<id>urn:sha1:0fa7015cc8ae9774c1e449688e29dee0b6aee438</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Fixed the perl code that was using the @matches array.</title>
<updated>2004-08-21T03:07:01Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-08-21T03:07:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c'/>
<id>urn:sha1:60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c</id>
<content type='text'>
- Simplified the other perl code just a little.
</content>
</entry>
<entry>
<title>One of the new parenthetical expressions needs to not return a value</title>
<updated>2004-08-18T20:30:27Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-08-18T20:30:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=472e21e242c6bbfa27b3f28fb7d2b733c3c7eb75'/>
<id>urn:sha1:472e21e242c6bbfa27b3f28fb7d2b733c3c7eb75</id>
<content type='text'>
so that it doesn't put items into the @matches array.
</content>
</entry>
<entry>
<title>Don't output a target "VAR" for a line of the form "VAR := VALUE".</title>
<updated>2004-08-18T20:22:46Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-08-18T20:22:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f12d3cca9ff37efe6e82ee17d6b340732347bd88'/>
<id>urn:sha1:f12d3cca9ff37efe6e82ee17d6b340732347bd88</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Don't output make targets all clumped into a single string when useperl</title>
<updated>2004-08-18T17:10:27Z</updated>
<author>
<name>Wayne Davison</name>
<email>wayned@users.sourceforge.net</email>
</author>
<published>2004-08-18T17:10:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=9dd5252c9fcdb22c1246c8a8943083e0317fdc2e'/>
<id>urn:sha1:9dd5252c9fcdb22c1246c8a8943083e0317fdc2e</id>
<content type='text'>
is enabled.
</content>
</entry>
<entry>
<title>17535: use-perl style for _make</title>
<updated>2002-08-14T15:18:19Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2002-08-14T15:18:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=513088857a59c7704734bd7cc3d9a8bc7492e11b'/>
<id>urn:sha1:513088857a59c7704734bd7cc3d9a8bc7492e11b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>16842: resolve name clash for nc between netcat and the nedit client for</title>
<updated>2002-03-15T16:26:08Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@users.sourceforge.net</email>
</author>
<published>2002-03-15T16:26:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=79323d6d41c91860cd05800a06cf8076df5051bd'/>
<id>urn:sha1:79323d6d41c91860cd05800a06cf8076df5051bd</id>
<content type='text'>
completion and add _pick_variant to resolve program variants in general
</content>
</entry>
<entry>
<title>remove that -T option to compdef again and instead use comma-separated sub-contexts both for function and style lookup (16819)</title>
<updated>2002-03-13T09:28:04Z</updated>
<author>
<name>Sven Wischnowsky</name>
<email>wischnow@users.sourceforge.net</email>
</author>
<published>2002-03-13T09:28:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=45f9a36216637075172d0bdf7ad8e18fad34c42e'/>
<id>urn:sha1:45f9a36216637075172d0bdf7ad8e18fad34c42e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>moved from Completion/User/_make</title>
<updated>2001-04-02T11:56:47Z</updated>
<author>
<name>Sven Wischnowsky</name>
<email>wischnow@users.sourceforge.net</email>
</author>
<published>2001-04-02T11:56:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3ba711cbbebc59e8c1d279393d3c469e7c4f5ea0'/>
<id>urn:sha1:3ba711cbbebc59e8c1d279393d3c469e7c4f5ea0</id>
<content type='text'>
</content>
</entry>
</feed>
