<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git/src/diff.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 9.0.1166: code is indented more than necessary</title>
<updated>2023-01-09T19:04:23+00:00</updated>
<author>
<name>Yegappan Lakshmanan</name>
<email>yegappan@yahoo.com</email>
</author>
<published>2023-01-09T19:04:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=1cfb14aa972ccf3235ac67f07b7db1175b7c5384'/>
<id>1cfb14aa972ccf3235ac67f07b7db1175b7c5384</id>
<content type='text'>
Problem:    Code is indented more than necessary.
Solution:   Use an early return where it makes sense. (Yegappan Lakshmanan,
            closes #11792)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Code is indented more than necessary.
Solution:   Use an early return where it makes sense. (Yegappan Lakshmanan,
            closes #11792)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 9.0.1098: code uses too much indent</title>
<updated>2022-12-26T12:50:04+00:00</updated>
<author>
<name>Yegappan Lakshmanan</name>
<email>yegappan@yahoo.com</email>
</author>
<published>2022-12-26T12:50:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=465de3a57b815f1188c707e7c083950c81652536'/>
<id>465de3a57b815f1188c707e7c083950c81652536</id>
<content type='text'>
Problem:    Code uses too much indent.
Solution:   Use an early return. (Yegappan Lakshmanan, closes #11747)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Code uses too much indent.
Solution:   Use an early return. (Yegappan Lakshmanan, closes #11747)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 9.0.0965: using one window for executing autocommands is insufficient</title>
<updated>2022-11-28T18:51:43+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-11-28T18:51:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=e76062c078debed0df818f70e4db14ad7a7cb53a'/>
<id>e76062c078debed0df818f70e4db14ad7a7cb53a</id>
<content type='text'>
Problem:    Using one window for executing autocommands is insufficient.
Solution:   Use up to five windows for executing autocommands.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Using one window for executing autocommands is insufficient.
Solution:   Use up to five windows for executing autocommands.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 9.0.0206: redraw flags are not named specifically</title>
<updated>2022-08-14T13:17:45+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-08-14T13:17:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=a4d158b3c839e96ed98ff87c7b7124ff4518c4ff'/>
<id>a4d158b3c839e96ed98ff87c7b7124ff4518c4ff</id>
<content type='text'>
Problem:    Redraw flags are not named specifically.
Solution:   Prefix "UPD_" to the flags, for UPDate_screen().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Redraw flags are not named specifically.
Solution:   Prefix "UPD_" to the flags, for UPDate_screen().
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 9.0.0124: code has more indent than needed</title>
<updated>2022-07-31T17:34:32+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2022-07-31T17:34:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=101d57b34b72f4fbc7df1b6edfd64c64a6be14fc'/>
<id>101d57b34b72f4fbc7df1b6edfd64c64a6be14fc</id>
<content type='text'>
Problem:    Code has more indent than needed.
Solution:   Use continue and return statements. (closes #10824)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Code has more indent than needed.
Solution:   Use continue and return statements. (closes #10824)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 9.0.0101: invalid memory access in diff mode with "dp" and undo</title>
<updated>2022-07-28T17:44:27+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-07-28T17:44:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=4e677b9c40ccbc5f090971b31dc2fe07bf05541d'/>
<id>4e677b9c40ccbc5f090971b31dc2fe07bf05541d</id>
<content type='text'>
Problem:    Invalid memory access in diff mode with "dp" and undo.
Solution:   Make sure the line number does not go below one.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Invalid memory access in diff mode with "dp" and undo.
Solution:   Make sure the line number does not go below one.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 9.0.0026: accessing freed memory with diff put</title>
<updated>2022-07-02T14:10:00+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-07-02T14:10:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=c5274dd12224421f2430b30c53b881b9403d649e'/>
<id>c5274dd12224421f2430b30c53b881b9403d649e</id>
<content type='text'>
Problem:    Accessing freed memory with diff put.
Solution:   Bail out when diff pointer is no longer valid.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Accessing freed memory with diff put.
Solution:   Bail out when diff pointer is no longer valid.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.5164: invalid memory access after diff buffer manipulations</title>
<updated>2022-06-26T15:53:34+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-06-26T15:53:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=c101abff4c6756db4f5e740fde289decb9452efa'/>
<id>c101abff4c6756db4f5e740fde289decb9452efa</id>
<content type='text'>
Problem:    Invalid memory access after diff buffer manipulations.
Solution:   Use zero offset when change removes all lines in a diff block.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Invalid memory access after diff buffer manipulations.
Solution:   Use zero offset when change removes all lines in a diff block.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.5163: crash when deleting buffers in diff mode</title>
<updated>2022-06-26T13:04:07+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-06-26T13:04:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=cd38bb4d83c942c4bad596835c6766cbf32e5195'/>
<id>cd38bb4d83c942c4bad596835c6766cbf32e5195</id>
<content type='text'>
Problem:    Crash when deleting buffers in diff mode.
Solution:   Recompute diffs later.  Skip window without a valid buffer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Crash when deleting buffers in diff mode.
Solution:   Recompute diffs later.  Skip window without a valid buffer.
</pre>
</div>
</content>
</entry>
</feed>
