summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-06-02patch 7.4.1874Bram Moolenaar
Problem: Unused variable in Win32 code. Solution: Remove it. (Mike Williams)
2016-06-02patch 7.4.1873Bram Moolenaar
Problem: When a callback adds a timer the GUI doesn't use it until later. (Ramel Eshed) Solution: Return early if a callback adds a timer.
2016-06-02patch 7.4.1872Bram Moolenaar
Problem: Still build problem with old version of Perl. Solution: Also define SvREFCNT_inc_void_NN if needed. (Ken Takata)
2016-06-02patch 7.4.1871Bram Moolenaar
Problem: Appending to the quickfix list while the quickfix window is open is very slow. Solution: Do not delete all the lines, only append the new ones. Avoid using a window while updating the list. (closes #841)
2016-06-02patch 7.4.1870Bram Moolenaar
Problem: One more Win64 compiler warning. Solution: Change declared argument type. (Ken Takata)
2016-06-02patch 7.4.1869Bram Moolenaar
Problem: Can't build with old version of Perl. Solution: Define PERLIO_FUNCS_DECL. (Tom G. Christensen)
2016-06-01patch 7.4.1868Bram Moolenaar
Problem: Setting really_exiting causes memory leaks to be reported. Solution: Add the in_free_all_mem flag.
2016-06-01patch 7.4.1867Bram Moolenaar
Problem: Memory leak in test_matchstrpos. Solution: Free the string before overwriting. (Yegappan Lakshmanan)
2016-06-01patch 7.4.1866Bram Moolenaar
Problem: Invalid memory access when exiting with EXITFREE defined. (Dominique Pelle) Solution: Set "really_exiting" and skip error messages.
2016-06-01patch 7.4.1865Bram Moolenaar
Problem: Memory leaks in tet49. (Dominique Pelle) Solution: Use NULL instead of an empty string.
2016-06-01patch 7.4.1864Bram Moolenaar
Problem: Python: encoding error with Python 2. Solution: Use "getcwdu" instead of "getcwd". (Ken Takata)
2016-06-01patch 7.4.1863Bram Moolenaar
Problem: Compiler warnings on Win64. Solution: Adjust types, add type casts. (Ken Takata)
2016-05-31patch 7.4.1862Bram Moolenaar
Problem: string() with repeated argument does not give a result usable by eval(). Solution: Refactor echo_striong and tv2string(), moving the common part to echo_string_core(). (Ken Takata)
2016-05-31patch 7.4.1861Bram Moolenaar
Problem: Compiler warnings with 64 bit compiler. Solution: Change int to size_t. (Mike William)
2016-05-31patch 7.4.1860Bram Moolenaar
Problem: Using a partial for timer_start() may cause a crash. Solution: Set the copyID in timer objects. (Ozaki Kiichi)
2016-05-29patch 7.4.1859Bram Moolenaar
Problem: Cannot use a function reference for "exit_cb". Solution: Use get_callback(). (Yegappan Lakshmanan)
2016-05-29patch 7.4.1858Bram Moolenaar
Problem: When a channel writes to a buffer it doesn't find a buffer by the short name but re-uses it anyway. Solution: Find buffer also by the short name.
2016-05-29patch 7.4.1857Bram Moolenaar
Problem: When a channel appends to a buffer that is 'nomodifiable' there is an error but appending is done anyway. Solution: Add the 'modifiable' option. Refuse to write to a 'nomodifiable' when the value is 1.
2016-05-28patch 7.4.1856Bram Moolenaar
Problem: failing job test fails on MS-Windows. Solution: Expect "fail" status instead of "dead".
2016-05-28patch 7.4.1855Bram Moolenaar
Problem: Valgrind reports memory leak for job that is not freed. Solution: Free all jobs on exit. Add test for failing job.
2016-05-28patch 7.4.1854Bram Moolenaar
Problem: When setting 'termguicolors' the Ignore highlighting doesn't work. (Charles Campbell) Solution: Handle the color names "fg" and "bg" when the GUI isn't running and no colors are speficied, fall back to black and white.
2016-05-28patch 7.4.1853Bram Moolenaar
Problem: Crash when job and channel are in the same dict while using partials. (Luc Hermitte) Solution: Do not decrement the channel reference count too early.
2016-05-28patch 7.4.1852Bram Moolenaar
Problem: Unix: Cannot run all tests with the GUI. Solution: Add the "testgui" target.
2016-05-28patch 7.4.1851Bram Moolenaar
Problem: test_syn_attr failes when using the GUI. (Dominique Pelle) Solution: Escape the font name properly.
2016-05-28patch 7.4.1850Bram Moolenaar
Problem: GUI freezes when using a job. (Shougo) Solution: Unregister the channel when there is an input error.
2016-05-27patch 7.4.1849Bram Moolenaar
Problem: Still trying to read from channel that is going to be closed. (Ramel Eshed) Solution: Check if ch_to_be_closed is set.
2016-05-26patch 7.4.1848Bram Moolenaar
Problem: Can't build with Strawberry Perl 5.24. Solution: Define S_SvREFCNT_dec() if needed. (Damien, Ken Takata)
2016-05-25patch 7.4.1847Bram Moolenaar
Problem: Getting an item from a NULL dict crashes. Setting a register to a NULL list crashes. (Nikolai Pavlov, issue #768) Comparing a NULL dict with a NULL dict fails. Solution: Properly check for NULL.
2016-05-25patch 7.4.1846Bram Moolenaar
Problem: Ubsan detects a multiplication overflow. Solution: Don't use orig_mouse_time when it's zero. (Dominique Pelle)
2016-05-25patch 7.4.1845Bram Moolenaar
Problem: Mentioning NetBeans when reading from channel. (Ramel Eshed) Solution: Make the text more generic.
2016-05-25patch 7.4.1844Bram Moolenaar
Problem: Using old function name in comment. More functions should start with test_. Solution: Rename function in comment. (Higashi Higashi) Rename disable_char_avail_for_testing() to test_disable_char_avail(). And alloc_fail() to test_alloc_fail().
2016-05-25patch 7.4.1843Bram Moolenaar
Problem: Tests involving Python are flaky. Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov)
2016-05-24patch 7.4.1842Bram Moolenaar
Problem: get() works for Partial but not for Funcref. Solution: Accept Funcref. Also return the function itself. (Nikolai Pavlov)
2016-05-24patch 7.4.1841Bram Moolenaar
Problem: The code to reallocate the buffer used for quickfix is repeated. Solution: Move the code to a function. (Yegappan Lakshmanan, closes #831)
2016-05-24patch 7.4.1840Bram Moolenaar
Problem: When using packages an "after" directory cannot be used. Solution: Add the "after" directory of the package to 'runtimepath' if it exists.
2016-05-24patch 7.4.1839Bram Moolenaar
Problem: Cannot get the items stored in a partial. Solution: Support using get() on a partial.
2016-05-24patch 7.4.1838Bram Moolenaar
Problem: Functions specifically for testing do not sort together. Solution: Rename garbagecollect_for_testing() to test_garbagecollect_now(). Add test_null_list(), test_null_dict(), etc.
2016-05-24patch 7.4.1837Bram Moolenaar
Problem: The BufUnload event is triggered twice, when :bunload is used with set to or . Solution: Do not trigger the event when ml_mfp is NULL. (Hirohito Higashi)
2016-05-24patch 7.4.1836Bram Moolenaar
Problem: When using a partial on a dictionary it always gets bound to that dictionary. Solution: Make a difference between binding a function to a dictionary explicitly or automatically.
2016-05-24patch 7.4.1835Bram Moolenaar
Problem: When splitting and closing a window the status height changes. Solution: Compute the frame height correctly. (Hirohito Higashi)
2016-05-24patch 7.4.1834Bram Moolenaar
Problem: Possible crash when conceal is active. Solution: Check for the screen to be valid when redrawing a line.
2016-05-24patch 7.4.1833Bram Moolenaar
Problem: Cannot use an Ex command for 'keywordprg'. Solution: Accept an Ex command. (Nelo-Thara Wallus)
2016-05-17patch 7.4.1832Bram Moolenaar
Problem: Memory leak in debug commands. Solution: Free memory before overwriting the pointer. (hint by Justin Keyes)
2016-05-15patch 7.4.1831Bram Moolenaar
Problem: When timer_stop() is called with a string there is no proper error message. Solution: Require getting a number. (Bjorn Linse)
2016-05-11patch 7.4.1830Bram Moolenaar
Problem: non-antialiased misnamed. Solution: Use NONANTIALIASED and NONANTIALIASED_QUALITY. (Kim Brouer, closes #793)
2016-05-09patch 7.4.1829Bram Moolenaar
Problem: No message on channel log when buffer was freed. Solution: Log a message.
2016-05-09patch 7.4.1828Bram Moolenaar
Problem: May try to access buffer that's already freed. Solution: When freeing a buffer remove it from any channel.
2016-05-09patch 7.4.1827Bram Moolenaar
Problem: No error when invoking a callback when it's not safe. Solution: Add an error message. Avoid the error when freeing a channel.
2016-05-09patch 7.4.1826Bram Moolenaar
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.
2016-05-08patch 7.4.1825Bram Moolenaar
Problem: When job writes to buffer nothing is written. (Nicola) Solution: Do not discard a channel before writing is done.