<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git/src, branch v7.3.108</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>updated for version 7.3.108</title>
<updated>2011-02-01T12:48:53+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-02-01T12:48:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=3c2d6534ef1f3f4cdde96196e966d2d1669c4c74'/>
<id>3c2d6534ef1f3f4cdde96196e966d2d1669c4c74</id>
<content type='text'>
Problem:    Useless check for NULL when calling vim_free().
Solution:   Remove the check. (Dominique Pelle)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Useless check for NULL when calling vim_free().
Solution:   Remove the check. (Dominique Pelle)
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.107</title>
<updated>2011-01-22T20:25:11+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-22T20:25:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=5e3d6ca435321c82b3e97e536549a30dc3580e17'/>
<id>5e3d6ca435321c82b3e97e536549a30dc3580e17</id>
<content type='text'>
Problem:    Year number for :undolist can be confused with month or day.
Solution:   Change "%y" to "%Y".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Year number for :undolist can be confused with month or day.
Solution:   Change "%y" to "%Y".
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.106</title>
<updated>2011-01-22T20:05:07+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-22T20:05:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=f3d419d719202a0d7320f200356590c6d85871e2'/>
<id>f3d419d719202a0d7320f200356590c6d85871e2</id>
<content type='text'>
Problem:    When 'cursorbind' is set another window may scroll unexpectedly
            when 'scrollbind' is also set. (Xavier Wang)
Solution:   Don't call update_topline() if 'scrollbind' is set.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    When 'cursorbind' is set another window may scroll unexpectedly
            when 'scrollbind' is also set. (Xavier Wang)
Solution:   Don't call update_topline() if 'scrollbind' is set.
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.105</title>
<updated>2011-01-22T00:13:39+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-22T00:13:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=445edda2f9a52ff9bce83ee5334d4ece2bd20494'/>
<id>445edda2f9a52ff9bce83ee5334d4ece2bd20494</id>
<content type='text'>
Problem:    Can't get the value of "b:changedtick" with getbufvar().
Solution:   Make it work. (Christian Brabandt)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Can't get the value of "b:changedtick" with getbufvar().
Solution:   Make it work. (Christian Brabandt)
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.104</title>
<updated>2011-01-21T23:58:20+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-21T23:58:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=4124e7237376fb50a03b6305bcdb4287ecdfd4e8'/>
<id>4124e7237376fb50a03b6305bcdb4287ecdfd4e8</id>
<content type='text'>
Problem:    Conceal: using Tab for cchar causes problems. (ZyX)
Solution:   Do not accept a control character for cchar.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Conceal: using Tab for cchar causes problems. (ZyX)
Solution:   Do not accept a control character for cchar.
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.103</title>
<updated>2011-01-21T23:11:50+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-21T23:11:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=164c60f5b1042419698ca7758bb2e32ed77bdede'/>
<id>164c60f5b1042419698ca7758bb2e32ed77bdede</id>
<content type='text'>
Problem:    Changing 'fileformat' and then using ":w" in an empty file sets
            the 'modified' option.
Solution:   In unchanged() don't ignore 'ff' for an empty file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Changing 'fileformat' and then using ":w" in an empty file sets
            the 'modified' option.
Solution:   In unchanged() don't ignore 'ff' for an empty file.
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.102</title>
<updated>2011-01-17T19:08:11+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-17T19:08:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=d2c340a6a696ecb498a3d293f377313fab66393b'/>
<id>d2c340a6a696ecb498a3d293f377313fab66393b</id>
<content type='text'>
Problem:    When using ":make", typing the next command and then getting the
            "reload" prompt the next command is (partly) eaten by the reload
            prompt.
Solution:   Accept ':' as a special character at the reload prompt to accept
            the default choice and execute the command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    When using ":make", typing the next command and then getting the
            "reload" prompt the next command is (partly) eaten by the reload
            prompt.
Solution:   Accept ':' as a special character at the reload prompt to accept
            the default choice and execute the command.
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.101</title>
<updated>2011-01-17T18:53:27+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-17T18:53:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=e2793357528c97ca73e76080b2d9bf6f89d6e2da'/>
<id>e2793357528c97ca73e76080b2d9bf6f89d6e2da</id>
<content type='text'>
Problem:    ino_t defined with wrong size.
Solution:   Move including auto/config.h before other includes. (Marius
            Geminas)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    ino_t defined with wrong size.
Solution:   Move including auto/config.h before other includes. (Marius
            Geminas)
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.100</title>
<updated>2011-01-17T18:50:06+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-17T18:50:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6'/>
<id>48ac02c9ebfed934d3f9f0761b6bcb56d26e74c6</id>
<content type='text'>
Problem:    When using :normal v:count isn't set.
Solution:   Call normal_cmd() with toplevel set to TRUE.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    When using :normal v:count isn't set.
Solution:   Call normal_cmd() with toplevel set to TRUE.
</pre>
</div>
</content>
</entry>
<entry>
<title>updated for version 7.3.099</title>
<updated>2011-01-08T13:46:03+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2011-01-08T13:46:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=13d831ff0c8879bdf59e6de35a106ccb9b4766da'/>
<id>13d831ff0c8879bdf59e6de35a106ccb9b4766da</id>
<content type='text'>
Problem:    Crash when splitting a window with zero height. (Yukihiro
            Nakadaira)
Solution:   Don't set the fraction in a window with zero height.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Crash when splitting a window with zero height. (Yukihiro
            Nakadaira)
Solution:   Don't set the fraction in a window with zero height.
</pre>
</div>
</content>
</entry>
</feed>
