Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: adizero/vim

Tags

v7.4.1849

Toggle v7.4.1849's commit message
patch 7.4.1849

Problem:    Still trying to read from channel that is going to be closed.
            (Ramel Eshed)
Solution:   Check if ch_to_be_closed is set.

v7.4.1848

Toggle v7.4.1848's commit message
patch 7.4.1848

Problem:    Can't build with Strawberry Perl 5.24.
Solution:   Define S_SvREFCNT_dec() if needed. (Damien, Ken Takata)

v7.4.1847

Toggle v7.4.1847's commit message
patch 7.4.1847

Problem:    Getting an item from a NULL dict crashes.  Setting a register to a
            NULL list crashes. (Nikolai Pavlov, issue vim#768)  Comparing a NULL
            dict with a NULL dict fails.
Solution:   Properly check for NULL.

v7.4.1846

Toggle v7.4.1846's commit message
patch 7.4.1846

Problem:    Ubsan detects a multiplication overflow.
Solution:   Don't use orig_mouse_time when it's zero. (Dominique Pelle)

v7.4.1845

Toggle v7.4.1845's commit message
patch 7.4.1845

Problem:    Mentioning NetBeans when reading from channel. (Ramel Eshed)
Solution:   Make the text more generic.

v7.4.1844

Toggle v7.4.1844's commit message
patch 7.4.1844

Problem:    Using old function name in comment.  More functions should start
            with test_.
Solution:   Rename function in comment. (Higashi Higashi) Rename
            disable_char_avail_for_testing() to test_disable_char_avail().
            And alloc_fail() to test_alloc_fail().

v7.4.1843

Toggle v7.4.1843's commit message
patch 7.4.1843

Problem:    Tests involving Python are flaky.
Solution:   Set the pt_auto field.  Add tests. (Nikolai Pavlov)

v7.4.1842

Toggle v7.4.1842's commit message
patch 7.4.1842

Problem:    get() works for Partial but not for Funcref.
Solution:   Accept Funcref.  Also return the function itself. (Nikolai Pavlov)

v7.4.1841

Toggle v7.4.1841's commit message
patch 7.4.1841

Problem:    The code to reallocate the buffer used for quickfix is repeated.
Solution:   Move the code to a function. (Yegappan Lakshmanan, closes vim#831)

v7.4.1840

Toggle v7.4.1840's commit message
patch 7.4.1840

Problem:    When using packages an "after" directory cannot be used.
Solution:   Add the "after" directory of the package to 'runtimepath' if it
            exists.