Skip to content

Tags: crr0004/vim

Tags

v7.4.2334

Toggle v7.4.2334's commit message
patch 7.4.2334

Problem:    On MS-Windows test_getcwd leaves Xtopdir behind.
Solution:   Set 'noswapfile'. (Michael Soyka)

v7.4.2333

Toggle v7.4.2333's commit message
patch 7.4.2333

Problem:    Outdated comments in test.
Solution:   Cleanup normal mode test. (Christian Brabandt)

v7.4.2332

Toggle v7.4.2332's commit message
patch 7.4.2332

Problem:    Crash when stop_timer() is called in a callback of a callback.
            Vim hangs when the timer callback uses too much time.
Solution:   Set tr_id to -1 when a timer is to be deleted. Don't keep calling
            callbacks forever. (Ozaki Kiichi)

v7.4.2331

Toggle v7.4.2331's commit message
patch 7.4.2331

Problem:    Using CTRL-X CTRL-V to complete a command line from Insert mode
            does not work after entering an expression on the command line.
Solution:   Don't use "ccline" when not actually using a command line. (test
            by Hirohito Higashi)

v7.4.2330

Toggle v7.4.2330's commit message
patch 7.4.2330

Problem:    Coverity complains about not checking curwin to be NULL.
Solution:   Use firstwin to avoid the warning.

v7.4.2329

Toggle v7.4.2329's commit message
patch 7.4.2329

Problem:    Error for min() and max() contains %s. (Nikolay Pavlov)
Solution:   Pass the function name. (closes vim#1040)

v7.4.2328

Toggle v7.4.2328's commit message
patch 7.4.2328

Problem:    Crash when BufWinLeave autocmd goes to another tab page. (Hirohito
            Higashi)
Solution:   Make close_buffer() go back to the right window.

v7.4.2327

Toggle v7.4.2327's commit message
patch 7.4.2327

Problem:    Freeing a variable that is on the stack.
Solution:   Don't free res_tv or err_tv. (Ozaki Kiichi)

v7.4.2326

Toggle v7.4.2326's commit message
patch 7.4.2326

Problem:    Illegal memory access when Visual selection starts in invalid
            position. (Dominique Pelle)
Solution:   Correct position when needed.

v7.4.2325

Toggle v7.4.2325's commit message
patch 7.4.2325

Problem:    Tiny build fails.
Solution:   Add #ifdef.