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

Skip to content

Tags: kberov/vim

Tags

v7.4.2092

Toggle v7.4.2092's commit message
patch 7.4.2092

Problem:    GTK 3 build fails with older GTK version.
Solution:   Check the pango version. (Kazunobu Kuriyama)

v7.4.2091

Toggle v7.4.2091's commit message
patch 7.4.2091

Problem:    Coverity reports a resource leak when out of memory.
Solution:   Close the file before returning.

v7.4.2090

Toggle v7.4.2090's commit message
patch 7.4.2090

Problem:    Using submatch() in a lambda passed to substitute() is verbose.
Solution:   Use a static list and pass it as an optional argument to the
            function.  Fix memory leak.

v7.4.2089

Toggle v7.4.2089's commit message
patch 7.4.2089

Problem:    Color handling of X11 GUIs is too complicated.
Solution:   Simplify the code.  Use RGBA where appropriate. (Kazunobu
            Kuriyama)

v7.4.2088

Toggle v7.4.2088's commit message
patch 7.4.2088

Problem:    Keymap test fails with normal features.
Solution:   Bail out if the keymap feature is not supported.

v7.4.2087

Toggle v7.4.2087's commit message
patch 7.4.2087

Problem:    Digraph code test coverage is still low.
Solution:   Add more tests. (Christian Brabandt)

v7.4.2086

Toggle v7.4.2086's commit message
patch 7.4.2086

Problem:    Using the system default encoding makes tests unpredictable.
Solution:   Always use utf-8 or latin1 in the new style tests.  Remove setting
            encoding and scriptencoding where it is not needed.

v7.4.2085

Toggle v7.4.2085's commit message
patch 7.4.2085

Problem:    Digraph tests fails on some systems.
Solution:   Run it separately and set 'encoding' early.

v7.4.2084

Toggle v7.4.2084's commit message
patch 7.4.2084

Problem:    New digraph test makes testing hang.
Solution:   Don't set "nocp".

v7.4.2083

Toggle v7.4.2083's commit message
patch 7.4.2083

Problem:    Coverity complains about not restoring a value.
Solution:   Restore the value, although it's not really needed.  Change return
            to jump to cleanup, might leak memory.