summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-03-19patch 7.4.1601v7.4.1601Bram Moolenaar
Problem: README files take a lot of space in the top directory. Solution: Move most of them to "READMEdir".
2016-03-19patch 7.4.1600v7.4.1600Bram Moolenaar
Problem: libs directory is not useful. Solution: Remove arp.library, it was only for very old Amiga versions.
2016-03-19patch 7.4.1599v7.4.1599Bram Moolenaar
Problem: No link to Coverity. Solution: Add Coverity badge in README.
2016-03-19patch 7.4.1598v7.4.1598Bram Moolenaar
Problem: When starting the GUI fails a swap file is left behind. (Joerg Plate) Solution: Preserve files before exiting. (closes #692)
2016-03-19patch 7.4.1597v7.4.1597Bram Moolenaar
Problem: Memory leak when out of memory. (Coverity) Solution: Free the name.
2016-03-19patch 7.4.1596v7.4.1596Bram Moolenaar
Problem: Memory leak. (Coverity) Solution: Free the pattern.
2016-03-19patch 7.4.1595v7.4.1595Bram Moolenaar
Problem: Not checking for failed open(). (Coverity) Solution: Check file descriptor not being negative.
2016-03-19patch 7.4.1594v7.4.1594Bram Moolenaar
Problem: Timers don't work on Unix. Solution: Add missing code.
2016-03-19patch 7.4.1593v7.4.1593Bram Moolenaar
Problem: Using channel timeout instead of request timeout. (Coverity) Solution: Remove the extra assignment.
2016-03-19patch 7.4.1592v7.4.1592Bram Moolenaar
Problem: Quickfix code using memory after being freed. (Dominique Pelle) Solution: Detect that the window was closed. (Hirohito Higashi)
2016-03-18patch 7.4.1591v7.4.1591Bram Moolenaar
Problem: The quickfix title is truncated. Solution: Save the command before it is truncated. (Anton Lindqvist)
2016-03-18patch 7.4.1590v7.4.1590Bram Moolenaar
Problem: Warning for shadowed variable. (Christian Brabandt) Solution: Move the variable into a local block.
2016-03-17patch 7.4.1589v7.4.1589Bram Moolenaar
Problem: Combining dict and args with partial doesn't always work. Solution: Use the arguments from the partial.
2016-03-17patch 7.4.1588v7.4.1588Bram Moolenaar
Problem: Old style test for quickfix. Solution: Turn test 96 into a new style test.
2016-03-17patch 7.4.1587v7.4.1587Bram Moolenaar
Problem: Compiler warnings with 64 bit compiler. Solution: Add type casts. (Mike Williams)
2016-03-17patch 7.4.1586v7.4.1586Bram Moolenaar
Problem: Nesting partials doesn't work. Solution: Append arguments. (Ken Takata)
2016-03-17patch 7.4.1585v7.4.1585Bram Moolenaar
Problem: Partial is not recognized everywhere. Solution: Check for partial in trans_function_name(). (Yasuhiro Matsumoto) Add a test.
2016-03-17patch 7.4.1584v7.4.1584Bram Moolenaar
Problem: Timers don't work for Win32 console. Solution: Add check_due_timer() in WaitForChar().
2016-03-16patch 7.4.1583v7.4.1583Bram Moolenaar
Problem: Warning for unitinialized variable. Solution: Initialize it. (Dominique)
2016-03-16patch 7.4.1582v7.4.1582Bram Moolenaar
Problem: Get E923 when using function(dict.func, [], dict). (Kent Sibilev) Storing a function with a dict in a variable drops the dict if the function is script-local. Solution: Translate the function name. Use dict arg if present.
2016-03-16patch 7.4.1581v7.4.1581Bram Moolenaar
Problem: Using ":call dict.func()" where the function is a partial does not work. Using "dict.func()" where the function does not take a Dictionary does not work. Solution: Handle partial properly in ":call". (Yasuhiro Matsumoto)
2016-03-16patch 7.4.1580v7.4.1580Bram Moolenaar
Problem: Crash when using function reference. (Luchr) Solution: Set initial refcount. (Ken Takata, closes #690)
2016-03-15patch 7.4.1579v7.4.1579Bram Moolenaar
Problem: Missing changes in channel.c Solution: Include the changes.
2016-03-15patch 7.4.1578v7.4.1578Bram Moolenaar
Problem: There is no way to invoke a function later or periodically. Solution: Add timer support.
2016-03-15patch 7.4.1577v7.4.1577Bram Moolenaar
Problem: Cannot pass "dict.Myfunc" around as a partial. Solution: Create a partial when expected.
2016-03-15patch 7.4.1576v7.4.1576Bram Moolenaar
Problem: Write error of viminfo file is not handled properly. (Christian Neukirchen) Solution: Check the return value of fclose(). (closes #682)
2016-03-15patch 7.4.1575v7.4.1575Bram Moolenaar
Problem: Using wrong size for struct. Solution: Use the size for wide API. (Ken Takata)
2016-03-15Add missing test file.Bram Moolenaar
2016-03-15patch 7.4.1574v7.4.1574Bram Moolenaar
Problem: ":undo 0" does not work. (Florent Fayolle) Solution: Make it undo all the way. (closes #688)
2016-03-15patch 7.4.1573v7.4.1573Bram Moolenaar
Problem: Tests get stuck at the more prompt. Solution: Move the backspace test out of test_alot.
2016-03-15patch 7.4.1572v7.4.1572Bram Moolenaar
Problem: Setting 'compatible' in test influences following tests. Solution: Turn 'compatible' off again.
2016-03-15patch 7.4.1571v7.4.1571Bram Moolenaar
Problem: No test for ":help". Solution: Add a test for what 7.4.1568 fixed. (Higashi Higashi)
2016-03-15patch 7.4.1570v7.4.1570Bram Moolenaar
Problem: There is no way to avoid the message when editing a file. Solution: Add the "F" flag to 'shortmess'. (Shougo, closes #686)
2016-03-15patch 7.4.1569v7.4.1569Bram Moolenaar
Problem: Using old style tests for quickfix. Solution: Change them to new style tests. (Yegappan Lakshmanan)
2016-03-15patch 7.4.1568v7.4.1568Bram Moolenaar
Problem: Using CTRL-] in help on option in parentheses doesn't work. Solution: Skip the "(" in "('". (Hirohito Higashi)
2016-03-15patch 7.4.1567v7.4.1567Bram Moolenaar
Problem: Crash in assert_fails(). Solution: Check for NULL. (Dominique Pelle) Add a test.
2016-03-15patch 7.4.1566v7.4.1566Bram Moolenaar
Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama) Solution: Remove the inner one.
2016-03-15patch 7.4.1565v7.4.1565Bram Moolenaar
Problem: Crash when assert_equal() runs into a NULL string. Solution: Check for NULL. (Dominique) Add a test.
2016-03-15patch 7.4.1564v7.4.1564Bram Moolenaar
Problem: An empty list in function() causes an error. Solution: Handle an empty list like there is no list of arguments.
2016-03-15patch 7.4.1563v7.4.1563Bram Moolenaar
Problem: Partial test fails on windows. Solution: Return 1 or -1 from compare function.
2016-03-14patch 7.4.1562v7.4.1562Bram Moolenaar
Problem: ":helptags ALL" crashes. (Lcd) Solution: Don't free twice.
2016-03-14patch 7.4.1561v7.4.1561Bram Moolenaar
Problem: Missing update to proto file. Solution: Change the proto file.
2016-03-14patch 7.4.1560v7.4.1560Bram Moolenaar
Problem: Dict options with a dash are more difficult to use. Solution: Use an underscore, so that dict.err_io can be used.
2016-03-14patch 7.4.1559v7.4.1559Bram Moolenaar
Problem: Passing cookie to a callback is clumsy. Solution: Change function() to take arguments and return a partial.
2016-03-13patch 7.4.1558v7.4.1558Bram Moolenaar
Problem: It is not easy to find out what windows display a buffer. Solution: Add win_findbuf().
2016-03-13patch 7.4.1557v7.4.1557Bram Moolenaar
Problem: Windows cannot be identified. Solution: Add a unique window number to each window and functions to use it.
2016-03-13patch 7.4.1556v7.4.1556Bram Moolenaar
Problem: "make install" changes the help tags file, causing it to differ from the repository. Solution: Move it aside and restore it.
2016-03-13patch 7.4.1555v7.4.1555Bram Moolenaar
Problem: List of test targets incomplete. Solution: Add newly added tests.
2016-03-13patch 7.4.1554v7.4.1554Bram Moolenaar
Problem: Completion for :colorscheme does not use 'packpath'. Solution: Make it work, add a test. (Hirohito Higashi)
2016-03-12patch 7.4.1553v7.4.1553Bram Moolenaar
Problem: ":runtime" does not use 'packpath'. Solution: Add "what" argument.