summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0661: eval test is still old stylev8.2.0661Bram Moolenaar2020-04-297-127/+169
| | | | | Problem: Eval test is still old style. Solution: Change into new style tests. (Yegappan Lakshmanan, closes #6009)
* patch 8.2.0660: the search.c file is a bit bigv8.2.0660Bram Moolenaar2020-04-2913-1976/+2020
| | | | | | Problem: The search.c file is a bit big. Solution: Split off the text object code to a separate file. (Yegappan Lakshmanan, closes #6007)
* patch 8.2.0659: Vim9: no test for equal func typev8.2.0659Bram Moolenaar2020-04-283-3/+21
| | | | | Problem: Vim9: no test for equal func type. Solution: Add a test. Improve type check.
* patch 8.2.0658: HP-UX build fails when setenv() is not definedv8.2.0658Bram Moolenaar2020-04-282-1/+3
| | | | | Problem: HP-UX build fails when setenv() is not defined. Solution: Change "colors" to "t_colors". (John Marriott)
* patch 8.2.0657: Vim9: no check if called variable is a FuncRefv8.2.0657Bram Moolenaar2020-04-284-6/+42
| | | | | Problem: Vim9: no check if called variable is a FuncRef. Solution: Add a type check.
* patch 8.2.0656: MS-Windows: redrawing right screen edge may not be neededv8.2.0656Bram Moolenaar2020-04-284-1/+21
| | | | | Problem: MS-Windows: redrawing right screen edge may not be needed. Solution: Check the build version. (Nobuhiro Takasaki, closes #6002)
* patch 8.2.0655: search code not sufficiently testedv8.2.0655Bram Moolenaar2020-04-2810-103/+551
| | | | | Problem: Search code not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5999)
* patch 8.2.0654: building with Python failsv8.2.0654Bram Moolenaar2020-04-282-1/+3
| | | | | Problem: Building with Python fails. Solution: Add missing argument.
* patch 8.2.0653: using uninitialized pointerv8.2.0653Bram Moolenaar2020-04-273-18/+18
| | | | | Problem: using uninitialized pointer. Solution: Move assignment up. (John Marriott)
* patch 8.2.0652: compiler warning for char conversionv8.2.0652Bram Moolenaar2020-04-272-2/+4
| | | | | Problem: Compiler warning for char conversion. Solution: Use unsigned char buffer.
* patch 8.2.0651: old style benchmark test still in list of distributed filesv8.2.0651Bram Moolenaar2020-04-272-2/+2
| | | | | Problem: Old style benchmark test still in list of distributed files. Solution: Remove the files from the list.
* patch 8.2.0650: Vim9: script function can be deletedv8.2.0650Bram Moolenaar2020-04-2712-81/+219
| | | | | | Problem: Vim9: script function can be deleted. Solution: Disallow deleting script function. Delete functions when sourcing a script again.
* patch 8.2.0649: undo problem whn an InsertLeave autocommand resets undov8.2.0649Bram Moolenaar2020-04-273-2/+20
| | | | | | Problem: Undo problem whn an InsertLeave autocommand resets undo. (Kutsan Kaplan) Solution: Do not create a new undo block when leaving Insert mode.
* patch 8.2.0648: semicolon search does not work in first linev8.2.0648Bram Moolenaar2020-04-273-2/+17
| | | | | | Problem: Semicolon search does not work in first line. Solution: Allow the cursor to be in line zero. (Christian Brabandt, closes #5996)
* patch 8.2.0647: MS-Windows: repeat count for events was not usedv8.2.0647Bram Moolenaar2020-04-262-0/+16
| | | | | Problem: MS-Windows: repeat count for events was not used. Solution: Check the repeat count. (Nobuhiro Takasaki, closes #5989)
* patch 8.2.0646: t_Co uses the value of $COLORS in the GUIv8.2.0646Bram Moolenaar2020-04-263-12/+15
| | | | | Problem: t_Co uses the value of $COLORS in the GUI. (Masato Nishihata) Solution: Ignore $COLORS for the GUI. (closes #5992)
* patch 8.2.0645: MS-Windows terminal: CTRL-C does not get to child jobv8.2.0645Bram Moolenaar2020-04-262-2/+3
| | | | | | Problem: MS-Windows terminal: CTRL-C does not get to child job. Solution: Remove CREATE_NEW_PROCESS_GROUP from CreateProcessW(). (Nobuhiro Takasaki, closes #5987)
* patch 8.2.0644: insufficient testing for invalid function argumentsv8.2.0644Bram Moolenaar2020-04-2618-10/+116
| | | | | Problem: Insufficient testing for invalid function arguments. Solution: Add more tests. (Yegappan Lakshmanan, closes #5988)
* patch 8.2.0643: terminal uses brown instead of dark yellowv8.2.0643Bram Moolenaar2020-04-262-3/+5
| | | | | Problem: Terminal uses brown instead of dark yellow. (Romain Lafourcade) Solution: Use color index 3 instead of 130. (closes #5993)
* patch 8.2.0642: Vim9: using invalid indexv8.2.0642Bram Moolenaar2020-04-263-2/+6
| | | | | Problem: Vim9: using invalid index. Solution: Check index for being valid. Fix memory leak.
* patch 8.2.0641: Vim9: not expanded in :hardcopy and syn-includev8.2.0641Bram Moolenaar2020-04-265-4/+44
| | | | | Problem: Vim9: not expanded in :hardcopy and "syntax include". Solution: Add the EX_EXPAND flag. Expend "syntax include".
* patch 8.2.0640: Vim9: expanding does not workv8.2.0640Bram Moolenaar2020-04-2511-221/+380
| | | | | Problem: Vim9: expanding does not work. Solution: Find wildcards in not compiled commands. Reorganize test files.
* patch 8.2.0639: MS-Windows: messages test still failsv8.2.0639Bram Moolenaar2020-04-252-16/+19
| | | | | Problem: MS-Windows: messages test still fails. Solution: Filter out the maintainer message.
* patch 8.2.0638: MS-Windows: messages test failsv8.2.0638Bram Moolenaar2020-04-252-0/+5
| | | | | Problem: MS-Windows: messages test fails. Solution: Clear environment variables.
* patch 8.2.0637: incsearch highlighting does not work for ":sort!"v8.2.0637Bram Moolenaar2020-04-254-2/+18
| | | | | Problem: Incsearch highlighting does not work for ":sort!". Solution: Skip over the exclamation point. (closes #5983)
* patch 8.2.0636: :messages does not show the maintainer when $LANG is unsetv8.2.0636Bram Moolenaar2020-04-252-0/+6
| | | | | Problem: :messages does not show the maintainer when $LANG is unset. Solution: Call get_mess_lang() if available. (closes #5978)
* patch 8.2.0635: when using 256 colors DarkYellow does not show expected colorv8.2.0635Bram Moolenaar2020-04-252-1/+3
| | | | | Problem: When using 256 colors DarkYellow does not show expected color. Solution: Use color 3 instead of 130. (Romain Lafourcade, closes #5985)
* patch 8.2.0634: crash with null partial and blobv8.2.0634Bram Moolenaar2020-04-2520-5/+136
| | | | | | Problem: Crash with null partial and blob. Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan, closes #5984)
* patch 8.2.0633: crash when using null partial in filter()v8.2.0633Bram Moolenaar2020-04-2414-4/+114
| | | | | Problem: Crash when using null partial in filter(). Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes #5976)
* patch 8.2.0632: crash when using Haikuv8.2.0632Bram Moolenaar2020-04-242-0/+6
| | | | | Problem: Crash when using Haiku. Solution: Lock the screen. (closes #5975, closes #5973)
* patch 8.2.0631: Haiku file formatted with wrong tabstopv8.2.0631Bram Moolenaar2020-04-242-3397/+3399
| | | | | Problem: Haiku file formatted with wrong tabstop. Solution: Use normal tabstop. Fix white space.
* patch 8.2.0630: "make tags" does not cover Haiku GUI filev8.2.0630Bram Moolenaar2020-04-242-0/+3
| | | | | Problem: "make tags" does not cover Haiku GUI file. Solution: Add *.cc files.
* patch 8.2.0629: setting a boolean option to v:false does not workv8.2.0629Bram Moolenaar2020-04-243-3/+22
| | | | | | Problem: Setting a boolean option to v:false does not work. Solution: Do not use the string representation of the value. (Christian Brabandt, closes #5974)
* patch 8.2.0628: error in menu translationsv8.2.0628Bram Moolenaar2020-04-2322-172/+174
| | | | | | Problem: Error in menu translations. Solution: Insert a backslash before a space in one more file. (Shun Bai, Emir Sari)
* patch 8.2.0627: Vim9: error message does not workv8.2.0627Bram Moolenaar2020-04-232-1/+3
| | | | | Problem: Vim9: error message does not work. (Yegappan Lakshmanan) Solution: Swap lines.
* patch 8.2.0626: Vim9: wrong syntax of function in Vim9 scriptv8.2.0626Bram Moolenaar2020-04-2310-48/+141
| | | | | | Problem: Vim9: wrong syntax of function in Vim9 script. Solution: Give error for missing space. Implement :echomsg and :echoerr. (closes #5670)
* patch 8.2.0625: Vim9: confusing error when calling unknown functionv8.2.0625Bram Moolenaar2020-04-234-18/+40
| | | | | Problem: Vim9: confusing error when calling unknown function. Solution: Give error while compiling.
* patch 8.2.0624: Vim9: no check for space before #commentv8.2.0624Bram Moolenaar2020-04-235-13/+94
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks. Fix :throw with double quoted string.
* patch 8.2.0623: typo in test commentv8.2.0623Bram Moolenaar2020-04-232-1/+3
| | | | | Problem: Typo in test comment. (Christ van Willegen) Solution: Avoid mixing up a data structure with a body part.
* patch 8.2.0622: Haiku: GUI does not compilev8.2.0622Bram Moolenaar2020-04-238-10/+33
| | | | | Problem: Haiku: GUI does not compile. Solution: Various fixes. (Emir Sari, closes #5961)
* patch 8.2.0621: after running tests asan files may remainv8.2.0621Bram Moolenaar2020-04-233-1/+5
| | | | | Problem: After running tests asan files may remain. Solution: Clean up asan files with "make testclean".
* patch 8.2.0620: error in menu translationsv8.2.0620Bram Moolenaar2020-04-233-9/+11
| | | | | Problem: Error in menu translations. Solution: Insert a backslash before a space.
* patch 8.2.0619: null dict is not handled like an empty dictv8.2.0619Bram Moolenaar2020-04-2312-27/+128
| | | | | Problem: Null dict is not handled like an empty dict. Solution: Fix the code and add tests. (Yegappan Lakshmanan, closes #5968)
* patch 8.2.0618: echoing a null list results in no outputv8.2.0618Bram Moolenaar2020-04-223-1/+5
| | | | | Problem: Echoing a null list results in no output. (Yegappan Lakshmanan) Solution: Return "[]" instead of NULL in echo_string_core().
* patch 8.2.0617: new error check triggers in Swedish menuv8.2.0617Bram Moolenaar2020-04-222-2/+4
| | | | | Problem: New error check triggers in Swedish menu. Solution: Insert backslash. (Mats Tegner, closes #5966)
* patch 8.2.0616: build error when disabling the diff featurev8.2.0616Bram Moolenaar2020-04-212-2/+4
| | | | | Problem: Build error when disabling the diff feature. Solution: Move parenthesis outside of #ifdef. (Tom Ryder)
* patch 8.2.0615: regexp benchmark stest is old stylev8.2.0615Bram Moolenaar2020-04-2119-44/+179
| | | | | | Problem: Regexp benchmark stest is old style. Solution: Make it a new style test. Fix using a NULL list. Add more tests. (Yegappan Lakshmanan, closes #5963)
* patch 8.2.0614: get ml_get error when deleting a line in 'completefunc'v8.2.0614Bram Moolenaar2020-04-2112-42/+62
| | | | | | Problem: Get ml_get error when deleting a line in 'completefunc'. (Yegappan Lakshmanan) Solution: Lock the text while evaluating 'completefunc'.
* patch 8.2.0613: Vim9: no check for space before #commentv8.2.0613Bram Moolenaar2020-04-206-32/+210
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks.
* Update runtime filesBram Moolenaar2020-04-2026-84/+194
|