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

Skip to content

Tags: Frankz/vim

Tags

v7.4.1819

Toggle v7.4.1819's commit message
patch 7.4.1819

Problem:    Compiler warnings when sprintf() is a macro.
Solution:   Don't interrupt sprintf() with an #ifdef. (Michael Jarvis,
            closes vim#788)

v7.4.1818

Toggle v7.4.1818's commit message
patch 7.4.1818

Problem:    Help completion adds @en to all matches except the first one.
Solution:   Remove "break", go over all items.

v7.4.1817

Toggle v7.4.1817's commit message
patch 7.4.1817

Problem:    The screen is not updated if a callback is invoked when closing a
            channel.
Solution:   Invoke redraw_after_callback().

v7.4.1816

Toggle v7.4.1816's commit message
patch 7.4.1816

Problem:    Looping over a null list throws an error.
Solution:   Skip over the for loop.

v7.4.1815

Toggle v7.4.1815's commit message
patch 7.4.1815

Problem:    Compiler warnings for unused variables. (Ajit Thakkar)
Solution:   Add a dummy initialization. (Yasuhiro Matsumoto)

v7.4.1814

Toggle v7.4.1814's commit message
patch 7.4.1814

Problem:    A channel may be garbage collected while it's still being used by
            a job. (James McCoy)
Solution:   Mark the channel as used if the job is still used.  Do the same
            for channels that are still used.

v7.4.1813

Toggle v7.4.1813's commit message
patch 7.4.1813

Problem:    Memory access error when running test_quickfix.
Solution:   Allocate one more byte. (Yegappan Lakshmanan)

v7.4.1812

Toggle v7.4.1812's commit message
patch 7.4.1812

Problem:    Failure on startup with Athena and Motif.
Solution:   Check for INVALCOLOR. (Kazunobu Kuriyama)

v7.4.1811

Toggle v7.4.1811's commit message
patch 7.4.1811

Problem:    Netbeans channel gets garbage collected.
Solution:   Set reference in nb_channel.

v7.4.1810

Toggle v7.4.1810's commit message
patch 7.4.1810

Problem:    Sending DETACH after a channel was closed isn't useful.
Solution:   Only add DETACH for a netbeans channel.