summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-26patch 8.0.0375: the "+ register is not testedBram Moolenaar
Problem: The "+ register is not tested. Solution: Add a test using another Vim instance to change the "+ register. (Kazuki Kuriyama)
2017-02-26patch 8.0.0374: invalid memory access when using :sc in Ex modeBram Moolenaar
Problem: Invalid memory access when using :sc in Ex mode. (Dominique Pelle) Solution: Avoid the column being negative. Also fix a hang in Ex mode.
2017-02-25patch 8.0.0373: build fails without +foldingBram Moolenaar
Problem: Build fails without +folding. Solution: Move misplaced #ifdef.
2017-02-25patch 8.0.0372: more options are not always definedBram Moolenaar
Problem: More options are not always defined. Solution: Consistently define all possible options.
2017-02-25patch 8.0.0371: leaking memory when setting v:completed_itemBram Moolenaar
Problem: Leaking memory when setting v:completed_item. Solution: Or the flags instead of setting them.
2017-02-25patch 8.0.0370: invalid memory access when setting wildchar emptyBram Moolenaar
Problem: Invalid memory access when setting wildchar empty. Solution: Avoid going over the end of the option value. (Dominique Pelle, closes #1509) Make option test check all number options with empty value.
2017-02-25patch 8.0.0369: a few options are not defined, depending on featuresBram Moolenaar
Problem: The 'balloondelay', 'ballooneval' and 'balloonexpr' options are not defined without the +balloon_eval feature. Testing that an option value fails does not work for unsupported options. Solution: Make the options defined but not supported. Don't test if setting unsupported options fails.
2017-02-25patch 8.0.0368: not all options are tested with a range of valuesBram Moolenaar
Problem: Not all options are tested with a range of values. Solution: Generate a test script from the source code.
2017-02-25patch 8.0.0367: types in include files may be inconsistentBram Moolenaar
Problem: If configure defines _LARGE_FILES some include files are included before it is defined. Solution: Include vim.h first. (Sam Thursfield, closes #1508)
2017-02-25patch 8.0.0366: build fails with tiny featuresBram Moolenaar
Problem: Build fails with tiny features. Solution: Add #ifdef.
2017-02-25patch 8.0.0365: might free a dict item that wasn't allocatedBram Moolenaar
Problem: Might free a dict item that wasn't allocated. Solution: Call dictitem_free(). (Nikolai Pavlov) Use this for b:changedtick.
2017-02-25patch 8.0.0364: ]s does not move cursor with two spell errors in one lineBram Moolenaar
Problem: ]s does not move cursor with two spell errors in one line. (Manuel Ortega) Solution: Don't stop search immediately when wrapped, search the line first. (Ken Takata) Add a test.
2017-02-23patch 8.0.0363: Travis is too slow to keep up with patchesBram Moolenaar
Problem: Travis is too slow to keep up with patches. Solution: Increase git depth to 20
2017-02-23patch 8.0.0362: tests fail on MS-WindowsBram Moolenaar
Problem: Tests fail on MS-Windows. Solution: Use $*.vim instead of $<.
2017-02-23patch 8.0.0361: GUI initialisation is not sufficiently testedBram Moolenaar
Problem: GUI initialisation is not sufficiently tested. Solution: Add the gui_init test. (Kazuki Kuriyama)
2017-02-23patch 8.0.0360: sometimes VimL is used instead of "Vim script"Bram Moolenaar
Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi)
2017-02-23patch 8.0.0359: 'number' and 'relativenumber' are not properly testedBram Moolenaar
Problem: 'number' and 'relativenumber' are not properly tested. Solution: Add tests, change old style to new style tests. (Ozaki Kiichi, closes #1447)
2017-02-23patch 8.0.0358: invalid memory access in C-indent codeBram Moolenaar
Problem: Invalid memory access in C-indent code. Solution: Don't go over end of empty line. (Dominique Pelle, closes #1492)
2017-02-23patch 8.0.0357: crash when setting 'guicursor' to weird valueBram Moolenaar
Problem: Crash when setting 'guicursor' to weird value. Solution: Avoid negative size. (Dominique Pelle, closes #1465)
2017-02-23patch 8.0.0356: leaking memory when setting 'ttytype'Bram Moolenaar
Problem: Leaking memory when setting 'ttytype'. Solution: Get free_oldval from the right option entry.
2017-02-23patch 8.0.0355: using uninitialized memory when 'isfname' is emptyBram Moolenaar
Problem: Using uninitialized memory when 'isfname' is empty. Solution: Don't call getpwnam() without an argument. (Dominique Pelle, closes #1464)
2017-02-23patch 8.0.0354: test to check that setting termcap key fails sometimesBram Moolenaar
Problem: Test to check that setting termcap key fails sometimes. Solution: Check for "t_k1" to exist. (Christian Brabandt, closes #1459)
2017-02-23patch 8.0.0353: if [RO] is translated it may be truncatedBram Moolenaar
Problem: If [RO] in the status line is translated to a longer string, it is trunctted to 4 bytes. Solution: Skip over the resulting string. (Jente Hidskes, closes #1499)
2017-02-23patch 8.0.0352: not easy to see when a typval needs to be clearedBram Moolenaar
Problem: The condition for when a typval needs to be cleared is too complicated. Solution: Init the type to VAR_UNKNOWN and clear it always.
2017-02-23patch 8.0.0351: no test for concatenating an empty stringBram Moolenaar
Problem: No test for concatenating an empty string that results from out of bounds indexing. Solution: Add a simple test.
2017-02-23patch 8.0.0350: not enough test coverage for PerlBram Moolenaar
Problem: Not enough test coverage for Perl. Solution: Add more Perl tests. (Dominique Perl, closes #1500)
2017-02-23patch 8.0.0349: redrawing errors with GTK 3Bram Moolenaar
Problem: Redrawing errors with GTK 3. Solution: When updating, first clear all rectangles and then draw them. (Kazunobu Kuriyama, Christian Ludwig, closes #848)
2017-02-22patch 8.0.0348: using shadow dir on Mac lack +clipboardBram Moolenaar
Problem: When building with a shadow directory on macOS lacks the +clipboard feature. Solution: Link *.m files, specifically os_macosx.m. (Kazunobu Kuriyama)
2017-02-21patch 8.0.0347: when using completion comment leader wont workBram Moolenaar
Problem: When using CTRL-X CTRL-U inside a comment, the use of the comment leader may not work. (Klement) Solution: Save and restore did_ai. (Christian Brabandt, closes #1494)
2017-02-21patch 8.0.0346: Vim relies on limits.h to be included indirectlyBram Moolenaar
Problem: Vim relies on limits.h to be included indirectly, but on Solaris 9 it may not be. (Ben Fritz) Solution: Always include limits.h.
2017-02-21patch 8.0.0345: islocked('d.changedtick') does not workBram Moolenaar
Problem: islocked('d.changedtick') does not work. Solution: Make it work.
2017-02-20patch 8.0.0344: unlet command leaks memoryBram Moolenaar
Problem: Unlet command leaks memory. (Nikolai Pavlov) Solution: Free the memory on error. (closes #1497)
2017-02-20patch 8.0.0343: b:changedtick can be unlockedBram Moolenaar
Problem: b:changedtick can be unlocked, even though it has no effect. (Nikolai Pavlov) Solution: Add a check and error E940. (closes #1496)
2017-02-19patch 8.0.0342: double free with EXITFREE and setting 'ttytype'Bram Moolenaar
Problem: Double free when compiled with EXITFREE and setting 'ttytype'. Solution: Avoid setting P_ALLOCED on 'ttytype'. (Dominique Pelle, closes #1461)
2017-02-19patch 8.0.0341: undo does not work properly when using completionBram Moolenaar
Problem: When using complete() and typing a character undo is saved after the character was inserted. (Shougo) Solution: Save for undo before inserting the character.
2017-02-19patch 8.0.0340: not checking return valud of dict_add()Bram Moolenaar
Problem: Not checking return valud of dict_add(). (Coverity) Solution: Handle a failure.
2017-02-18patch 8.0.0339: illegal memory access with vi'Bram Moolenaar
Problem: Illegal memory access with vi' Solution: For quoted text objects bail out if the Visual area spans more than one line.
2017-02-18patch 8.0.0338: :recover test fails on MS-WindowsBram Moolenaar
Problem: :recover test fails on MS-Windows. Solution: Use non-existing directory on MS-Windows.
2017-02-18patch 8.0.0337: invalid memory access in :recover commandBram Moolenaar
Problem: Invalid memory access in :recover command. Solution: Avoid access before directory name. (Dominique Pelle, closes #1488)
2017-02-17Updated runtime files.Bram Moolenaar
2017-02-17patch 8.0.0336: flags of :substitute not sufficiently testedBram Moolenaar
Problem: Flags of :substitute not sufficiently tested. Solution: Test up to two letter flag combinations. (James McCoy, closes #1479)
2017-02-17patch 8.0.0335: functions test failsBram Moolenaar
Problem: Functions test fails. Solution: Use the right buffer number.
2017-02-17patch 8.0.0334: can't access b:changedtick from a dict referenceBram Moolenaar
Problem: Can't access b:changedtick from a dict reference. Solution: Make changedtick a member of the b: dict. (inspired by neovim #6112)
2017-02-17patch 8.0.0333: illegal memory access when 'complete' ends in a backslashBram Moolenaar
Problem: Illegal memory access when 'complete' ends in a backslash. Solution: Check for trailing backslash. (Dominique Pelle, closes #1478)
2017-02-17patch 8.0.0332: GUI test fails on some systemsBram Moolenaar
Problem: GUI test fails on some systems. Solution: Try different language settings. (Kazunobu Kuriyama)
2017-02-17patch 8.0.0331: restoring help snapshot accesses freed memoryBram Moolenaar
Problem: Restoring help snapshot accesses freed memory. (Dominique Pelle) Solution: Don't restore a snapshot when the window closes.
2017-02-17patch 8.0.0330: illegal memory access after "vapo"Bram Moolenaar
Problem: Illegal memory access after "vapo". (Dominique Pelle) Solution: Fix the cursor column.
2017-02-12patch 8.0.0329: xfontset and guifontwide are not testedBram Moolenaar
Problem: Xfontset and guifontwide are not tested. Solution: Add tests. (Kazunobu Kuriyama)
2017-02-12patch 8.0.0328: the "zero count" error doesn't have a numberBram Moolenaar
Problem: The "zero count" error doesn't have a number. (Hirohito Higashi) Solution: Give it a number and be more specific about the error.
2017-02-12patch 8.0.0327: error message in cmdline window is not translatedBram Moolenaar
Problem: The E11 error message in the command line window is not translated. Solution: use _(). (Hirohito Higashi)