Skip to content

Tags: t-nelis/vim

Tags

v7.4.1877

Toggle v7.4.1877's commit message
patch 7.4.1877

Problem:    No test for invoking "close_cb" when writing to a buffer.
Solution:   Add using close_cb to a test case.

v7.4.1876

Toggle v7.4.1876's commit message
patch 7.4.1876

Problem:    Typing "k" at the hit-enter prompt has no effect.
Solution:   Don't assume recursive use of the prompt if a character was typed.
            (Hirohito Higashi)

v7.4.1875

Toggle v7.4.1875's commit message
patch 7.4.1875

Problem:    Comparing functions and partials doesn't work well.
Solution:   Add tests. (Nikolai Pavlov)  Compare the dict and arguments in the
            partial. (closes vim#813)

v7.4.1874

Toggle v7.4.1874's commit message
patch 7.4.1874

Problem:    Unused variable in Win32 code.
Solution:   Remove it. (Mike Williams)

v7.4.1873

Toggle v7.4.1873's commit message
patch 7.4.1873

Problem:    When a callback adds a timer the GUI doesn't use it until later.
            (Ramel Eshed)
Solution:   Return early if a callback adds a timer.

v7.4.1872

Toggle v7.4.1872's commit message
patch 7.4.1872

Problem:    Still build problem with old version of Perl.
Solution:   Also define SvREFCNT_inc_void_NN if needed. (Ken Takata)

v7.4.1871

Toggle v7.4.1871's commit message
patch 7.4.1871

Problem:    Appending to the quickfix list while the quickfix window is open
            is very slow.
Solution:   Do not delete all the lines, only append the new ones.  Avoid
            using a window while updating the list. (closes vim#841)

v7.4.1870

Toggle v7.4.1870's commit message
patch 7.4.1870

Problem:    One more Win64 compiler warning.
Solution:   Change declared argument type. (Ken Takata)

v7.4.1869

Toggle v7.4.1869's commit message
patch 7.4.1869

Problem:    Can't build with old version of Perl.
Solution:   Define PERLIO_FUNCS_DECL. (Tom G. Christensen)

v7.4.1868

Toggle v7.4.1868's commit message
patch 7.4.1868

Problem:    Setting really_exiting causes memory leaks to be reported.
Solution:   Add the in_free_all_mem flag.