<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/tag-util.c, branch 0.35</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=0.35</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=0.35'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2020-08-10T00:14:36Z</updated>
<entry>
<title>Fix typos</title>
<updated>2020-08-10T00:14:36Z</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2020-08-08T11:49:55Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=6c84dee53193a78cf797b44d3febcc14488ea6b1'/>
<id>urn:sha1:6c84dee53193a78cf797b44d3febcc14488ea6b1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cli: convert notmuch_bool_t to stdbool</title>
<updated>2017-10-10T01:24:02Z</updated>
<author>
<name>Jani Nikula</name>
<email>jani@nikula.org</email>
</author>
<published>2017-10-07T08:44:04Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=0f314c0c99befea599a68bea51d759b4133efef6'/>
<id>urn:sha1:0f314c0c99befea599a68bea51d759b4133efef6</id>
<content type='text'>
C99 stdbool turned 18 this year. There really is no reason to use our
own, except in the library interface for backward
compatibility. Convert the cli and test binaries to stdbool.
</content>
</entry>
<entry>
<title>remove ineffective assignments</title>
<updated>2017-06-25T12:38:22Z</updated>
<author>
<name>Piotr Trojanek</name>
<email>piotr.trojanek@gmail.com</email>
</author>
<published>2017-06-16T22:50:24Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=410b96080ceec15ced70e684115f604380c5b4f6'/>
<id>urn:sha1:410b96080ceec15ced70e684115f604380c5b4f6</id>
<content type='text'>
Detected by cppcheck.
</content>
</entry>
<entry>
<title>fix leaks due to missing invocations of va_end</title>
<updated>2017-06-25T12:35:23Z</updated>
<author>
<name>Piotr Trojanek</name>
<email>piotr.trojanek@gmail.com</email>
</author>
<published>2017-06-16T22:50:23Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=e9d73f90a6d3945b7ebda9d95ec719e0ba0c9756'/>
<id>urn:sha1:e9d73f90a6d3945b7ebda9d95ec719e0ba0c9756</id>
<content type='text'>
As the Linux man page states: "Each invocation of va_start() must be
matched by a corresponding invocation of va_end() in the same
function." Detected by cppcheck.
</content>
</entry>
<entry>
<title>minor whitespace cleanups</title>
<updated>2017-06-25T12:32:08Z</updated>
<author>
<name>Piotr Trojanek</name>
<email>piotr.trojanek@gmail.com</email>
</author>
<published>2017-06-16T22:50:22Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a17eb162ee15e41366ca327250c3935da2df80ed'/>
<id>urn:sha1:a17eb162ee15e41366ca327250c3935da2df80ed</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cli: add missing \n in error message</title>
<updated>2014-03-06T11:46:27Z</updated>
<author>
<name>Jani Nikula</name>
<email>jani@nikula.org</email>
</author>
<published>2014-03-04T16:51:54Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=735cbb8719068c4741ed0a4f5ea68f2ed31b7009'/>
<id>urn:sha1:735cbb8719068c4741ed0a4f5ea68f2ed31b7009</id>
<content type='text'>
The error messages returned by illegal_tag() don't contain newlines.
</content>
</entry>
<entry>
<title>cli: export function for illegal tag checking</title>
<updated>2014-03-06T11:41:38Z</updated>
<author>
<name>Jani Nikula</name>
<email>jani@nikula.org</email>
</author>
<published>2014-02-23T16:55:21Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=07dd9d53cb7d92dc42ef697edb65e4c491b65928'/>
<id>urn:sha1:07dd9d53cb7d92dc42ef697edb65e4c491b65928</id>
<content type='text'>
This lets us check for forbidden tags consistently across the cli. No
functional changes.
</content>
</entry>
<entry>
<title>tag-util: do not reset list in parse_tag_command_line</title>
<updated>2013-06-29T17:36:23Z</updated>
<author>
<name>Peter Wang</name>
<email>novalazy@gmail.com</email>
</author>
<published>2013-06-23T04:23:55Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=f00c925bd10c024d5b9f88d8903c7a0d14e9cc6a'/>
<id>urn:sha1:f00c925bd10c024d5b9f88d8903c7a0d14e9cc6a</id>
<content type='text'>
The 'insert' command will be better served if parse_tag_command_line
modifies a pre-populated list (of new.tags) instead of clobbering the
list outright.  The sole existing caller, notmuch_tag_command, is
unaffected by this change.
</content>
</entry>
<entry>
<title>tag-util: move out 'tag' command-line check</title>
<updated>2013-06-29T17:36:07Z</updated>
<author>
<name>Peter Wang</name>
<email>novalazy@gmail.com</email>
</author>
<published>2013-06-23T04:23:54Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=e8efa11da90fa47adcbc489638320d61ac98391a'/>
<id>urn:sha1:e8efa11da90fa47adcbc489638320d61ac98391a</id>
<content type='text'>
Move an error condition specific to the 'tag' command out of
parse_tag_command_line so that parse_tag_command_line can be used for
the forthcoming 'insert' command.
</content>
</entry>
<entry>
<title>cli: make caller check tag count in parse_tag_command_line</title>
<updated>2013-03-30T22:33:40Z</updated>
<author>
<name>Jani Nikula</name>
<email>jani@nikula.org</email>
</author>
<published>2013-03-09T14:56:48Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a6822eccaca773aa03473bca490618e30dac24ca'/>
<id>urn:sha1:a6822eccaca773aa03473bca490618e30dac24ca</id>
<content type='text'>
</content>
</entry>
</feed>
