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

Skip to content

Tags: iblech/vim

Tags

v7.4.1725

Toggle v7.4.1725's commit message
patch 7.4.1725

Problem:    Compiler errors for non-ANSI compilers.
Solution:   Remove // comment.  Remove comma at end of enum. (Michael Jarvis)

v7.4.1724

Toggle v7.4.1724's commit message
patch 7.4.1724

Problem:    Tabline test fails in GUI.
Solution:   Remove 'e' from 'guioptions'.

v7.4.1723

Toggle v7.4.1723's commit message
patch 7.4.1723

Problem:    When using try/catch in 'tabline' it is still considered an
            error and the tabline will be disabled.
Solution:   Check did_emsg instead of called_emsg. (haya14busa, closes vim#746)

v7.4.1722

Toggle v7.4.1722's commit message
patch 7.4.1722

Problem:    Crash when calling garbagecollect() after starting a job.
Solution:   Set the copyID on job and channel. (Hirohito Higashi, Ozaki
            Kiichi)

v7.4.1721

Toggle v7.4.1721's commit message
patch 7.4.1721

Problem:    The vimtbar files are unused.
Solution:   Remove them. (Ken Takata)

v7.4.1720

Toggle v7.4.1720's commit message
patch 7.4.1720

Problem:    Tests fail without the job feature.
Solution:   Skip tests when the job feature is not present.

v7.4.1719

Toggle v7.4.1719's commit message
patch 7.4.1719

Problem:    Leaking memory when there is a cycle involving a job and a
            partial.
Solution:   Add a copyID to job and channel.  Set references in items referred
            by them.  Go through all jobs and channels to find unreferenced
            items.  Also, decrement reference counts when garbage collecting.

v7.4.1718

Toggle v7.4.1718's commit message
patch 7.4.1718

Problem:    Coverity: not using return value of set_ref_in_item().
Solution:   Use the return value.

v7.4.1717

Toggle v7.4.1717's commit message
patch 7.4.1717

Problem:    Leaking memory when opening a channel fails.
Solution:   Unreference partials in job options.

v7.4.1716

Toggle v7.4.1716's commit message
patch 7.4.1716

Problem:    'autochdir' doesn't work for the first file. (Rob Hoelz)
Solution:   Call DO_AUTOCHDIR after startup. (Christian Brabandt, closes vim#704)