Skip to content

Tags: GavanYang/vim

Tags

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.

v7.4.2324

Toggle v7.4.2324's commit message
patch 7.4.2324

Problem:    Crash when editing a new buffer and BufUnload autocommand wipes
            out the new buffer. (Norio Takagi)
Solution:   Don't allow wiping out this buffer. (partly by Hirohito Higashi)
            Move old style test13 into test_autocmd. Avoid ml_get error when
            editing a file.

v7.4.2323

Toggle v7.4.2323's commit message
patch 7.4.2323

Problem:    Using freed memory when using 'formatexpr'. (Dominique Pelle)
Solution:   Make a copy of 'formatexpr' before evaluating it.

v7.4.2322

Toggle v7.4.2322's commit message
patch 7.4.2322

Problem:    Access memory beyond the end of the line. (Dominique Pelle)
Solution:   Adjust the cursor column.

v7.4.2321

Toggle v7.4.2321's commit message
patch 7.4.2321

Problem:    When a test is commented out we forget about it.
Solution:   Let a test throw an exception with "Skipped" and list skipped test
            functions. (Christian Brabandt)