<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git/src/crypt_zip.c, branch v9.0.1237</title>
<subtitle>github.com: vim/vim.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/'/>
<entry>
<title>patch 9.0.1234: the code style has to be checked manually</title>
<updated>2023-01-22T21:14:53+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2023-01-22T21:14:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=ebfec1c531f32d424bb2aca6e7391ef3bfcbfe20'/>
<id>ebfec1c531f32d424bb2aca6e7391ef3bfcbfe20</id>
<content type='text'>
Problem:    The code style has to be checked manually.
Solution:   Add basic code style checks in a test.  Fix or avoid uncovered
            problems.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    The code style has to be checked manually.
Solution:   Add basic code style checks in a test.  Fix or avoid uncovered
            problems.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3022: available encryption methods are not strong enough</title>
<updated>2021-06-20T12:02:16+00:00</updated>
<author>
<name>Christian Brabandt</name>
<email>cb@256bit.org</email>
</author>
<published>2021-06-20T12:02:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=f573c6e1ed58d46d694c802eaf5ae3662a952744'/>
<id>f573c6e1ed58d46d694c802eaf5ae3662a952744</id>
<content type='text'>
Problem:    Available encryption methods are not strong enough.
Solution:   Add initial support for xchaha20. (Christian Brabandt,
            closes #8394)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Available encryption methods are not strong enough.
Solution:   Add initial support for xchaha20. (Christian Brabandt,
            closes #8394)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.1.2368: using old C style comments</title>
<updated>2019-11-30T19:52:27+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2019-11-30T19:52:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=c667da5185ce5dce914d2006d62da2be0cedb384'/>
<id>c667da5185ce5dce914d2006d62da2be0cedb384</id>
<content type='text'>
Problem:    Using old C style comments.
Solution:   Use // comments where appropriate.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Using old C style comments.
Solution:   Use // comments where appropriate.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts</title>
<updated>2019-05-28T21:08:19+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2019-05-28T21:08:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=c799fe206e61f2e2c1231bc46cbe4bb354f3da69'/>
<id>c799fe206e61f2e2c1231bc46cbe4bb354f3da69</id>
<content type='text'>
Problem:    Alloc() returning "char_u *" causes a lot of type casts.
Solution:   Have it return "void *". (Mike Williams)  Define ALLOC_ONE() to
            check the simple allocations.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Alloc() returning "char_u *" causes a lot of type casts.
Solution:   Have it return "void *". (Mike Williams)  Define ALLOC_ONE() to
            check the simple allocations.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.1.1219: not checking for NULL return from alloc()</title>
<updated>2019-04-27T20:06:37+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2019-04-27T20:06:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=6ee9658774942f7448af700fc04df0335796a3db'/>
<id>6ee9658774942f7448af700fc04df0335796a3db</id>
<content type='text'>
Problem:    Not checking for NULL return from alloc().
Solution:   Add checks. (Martin Kunev, closes #4303, closes #4174)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Not checking for NULL return from alloc().
Solution:   Add checks. (Martin Kunev, closes #4303, closes #4174)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.1.1086: too many curly braces</title>
<updated>2019-03-30T17:47:01+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2019-03-30T17:47:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=abab0b0fdd6535969447b03a4fffc1947918cf6c'/>
<id>abab0b0fdd6535969447b03a4fffc1947918cf6c</id>
<content type='text'>
Problem:    Too many curly braces.
Solution:   Remove curly braces where they are not needed. (Hirohito Higashi,
            closes #3982)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Too many curly braces.
Solution:   Remove curly braces where they are not needed. (Hirohito Higashi,
            closes #3982)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.1.0811: too many #ifdefs</title>
<updated>2019-01-24T16:59:39+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2019-01-24T16:59:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=30276f2beb248557c6b33cd5418bca8b7084b0a5'/>
<id>30276f2beb248557c6b33cd5418bca8b7084b0a5</id>
<content type='text'>
Problem:    Too many #ifdefs.
Solution:   Graduate FEAT_MBYTE, the final chapter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Too many #ifdefs.
Solution:   Graduate FEAT_MBYTE, the final chapter.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.1.0443: unnecessary static function prototypes</title>
<updated>2018-09-30T19:43:26+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2018-09-30T19:43:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=6dff58f15cede9139b2fcfc64c9064326ea3d3b0'/>
<id>6dff58f15cede9139b2fcfc64c9064326ea3d3b0</id>
<content type='text'>
Problem:    Unnecessary static function prototypes.
Solution:   Remove unnecessary prototypes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Unnecessary static function prototypes.
Solution:   Remove unnecessary prototypes.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 7.4.2293</title>
<updated>2016-08-29T20:49:24+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2016-08-29T20:49:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=edf3f97ae2af024708ebb4ac614227327033ca47'/>
<id>edf3f97ae2af024708ebb4ac614227327033ca47</id>
<content type='text'>
Problem:    Modelines in source code are inconsistant.
Solution:   Use the same line in most files.  Add 'noet'.  (Naruhiko Nishino)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Modelines in source code are inconsistant.
Solution:   Use the same line in most files.  Add 'noet'.  (Naruhiko Nishino)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 7.4.1205</title>
<updated>2016-01-30T14:14:10+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2016-01-30T14:14:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=7454a06e2642d2b37afad1c5e71cec68081ca4ff'/>
<id>7454a06e2642d2b37afad1c5e71cec68081ca4ff</id>
<content type='text'>
Problem:    Using old style function declarations.
Solution:   Change to new style function declarations. (script by Hirohito
            Higashi)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Using old style function declarations.
Solution:   Change to new style function declarations. (script by Hirohito
            Higashi)
</pre>
</div>
</content>
</entry>
</feed>
