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

Skip to content

Tags: luan/vim

Tags

v7.4.1832

Toggle v7.4.1832's commit message
patch 7.4.1832

Problem:    Memory leak in debug commands.
Solution:   Free memory before overwriting the pointer. (hint by Justin Keyes)

v7.4.1831

Toggle v7.4.1831's commit message
patch 7.4.1831

Problem:    When timer_stop() is called with a string there is no proper error
            message.
Solution:   Require getting a number. (Bjorn Linse)

v7.4.1830

Toggle v7.4.1830's commit message
patch 7.4.1830

Problem:    non-antialiased misnamed.
Solution:   Use NONANTIALIASED and NONANTIALIASED_QUALITY. (Kim Brouer,
            closes vim#793)

v7.4.1829

Toggle v7.4.1829's commit message
patch 7.4.1829

Problem:    No message on channel log when buffer was freed.
Solution:   Log a message.

v7.4.1828

Toggle v7.4.1828's commit message
patch 7.4.1828

Problem:    May try to access buffer that's already freed.
Solution:   When freeing a buffer remove it from any channel.

v7.4.1827

Toggle v7.4.1827's commit message
patch 7.4.1827

Problem:    No error when invoking a callback when it's not safe.
Solution:   Add an error message.  Avoid the error when freeing a channel.

v7.4.1826

Toggle v7.4.1826's commit message
patch 7.4.1826

Problem:    Callbacks are invoked when it's not safe. (Andrew Stewart)
Solution:   When a channel is to be closed don't invoke callbacks right away,
            wait for a safe moment.

v7.4.1825

Toggle v7.4.1825's commit message
patch 7.4.1825

Problem:    When job writes to buffer nothing is written. (Nicola)
Solution:   Do not discard a channel before writing is done.

v7.4.1824

Toggle v7.4.1824's commit message
patch 7.4.1824

Problem:    When a job is no longer referenced and does not have an exit
            callback the process may hang around in defunc state. (Nicola)
Solution:   Call job_status() if the job is running and won't get freed
            because it might still be useful.

v7.4.1823

Toggle v7.4.1823's commit message
patch 7.4.1823

Problem:    Warning from 64 bit compiler.
Solution:   Add type cast. (Mike Williams)