summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.5096: terminal test still fails with some shell commandsv8.2.5096Bram Moolenaar2022-06-142-1/+3
| | | | | Problem: Terminal test still fails with some shell commands. Solution: Add missing "call". (closes #10530)
* patch 8.2.5095: terminal test still fails with some shell commandsv8.2.5095Bram Moolenaar2022-06-142-3/+5
| | | | | | Problem: Terminal test still fails with some shell commands. Solution: Disable setting the window title in the Vim instance running in a terminal window. (closes #10530)
* Update runtime filesBram Moolenaar2022-06-1442-1511/+2839
|
* patch 8.2.5094: MS-Windows GUI: empty command may cause a dialogv8.2.5094Bram Moolenaar2022-06-143-2/+6
| | | | | Problem: MS-Windows GUI: empty command may cause a dialog. Solution: Delete the dialog file. Improve the message.
* patch 8.2.5093: error message for unknown command may have the command twicev8.2.5093Bram Moolenaar2022-06-142-1/+5
| | | | | | Problem: Error message for unknown command may mention the command twice. (Malcolm Rowe) Solution: Add the did_append_cmd flag. (closes #10570)
* patch 8.2.5092: using "'<,'>" in Ex mode may compare unrelated pointersv8.2.5092Bram Moolenaar2022-06-142-11/+18
| | | | | Problem: Using "'<,'>" in Ex mode may compare unrelated pointers. Solution: Set eap->cmd to "+" only later.
* patch 8.2.5091: terminal test fails with some shell commandsv8.2.5091Bram Moolenaar2022-06-142-0/+6
| | | | | Problem: Terminal test fails with some shell commands. Solution: Disable setting the window title. (closes #10530)
* patch 8.2.5090: MS-Windows: vim.def is no longer usedv8.2.5090K.Takata2022-06-144-8/+4
| | | | | Problem: MS-Windows: vim.def is no longer used. Solution: Delete vim.def. (Ken Takata, closes #10569)
* patch 8.2.5089: some functions return a different value on failurev8.2.5089Yegappan Lakshmanan2022-06-145-6/+14
| | | | | | Problem: Some functions return a different value on failure. Solution: Initialize the return value earlier. (Yegappan Lakshmanan, closes #10568)
* patch 8.2.5088: value of cmod_verbose is a bit complicated to usev8.2.5088zeertzjq2022-06-145-11/+11
| | | | | Problem: Value of cmod_verbose is a bit complicated to use. Solution: Use zero for not set, value + 1 when set. (closes #10564)
* patch 8.2.5087: cannot build with clang on MS-Windowsv8.2.5087Yegappan Lakshmanan2022-06-144-1/+56
| | | | | | Problem: Cannot build with clang on MS-Windows. Solution: Add support for building with clang. (Yegappan Lakshmanan, closes #10557)
* patch 8.2.5086: CI runs on Windows 2019v8.2.5086Philip H2022-06-142-3/+13
| | | | | Problem: CI runs on Windows 2019. Solution: Switch to Windows 2022.
* patch 8.2.5085: gcc gives warning for signed/unsigned differencev8.2.5085Bram Moolenaar2022-06-132-3/+5
| | | | | Problem: Gcc gives warning for signed/unsigned difference. Solution: Use a different pointer type. (John Marriott)
* patch 8.2.5084: when the GUI shows a dialog tests get stuckv8.2.5084Bram Moolenaar2022-06-1315-18/+111
| | | | | Problem: When the GUI shows a dialog tests get stuck. Solution: Add the --gui-dialog-file argument.
* patch 8.2.5083: autocmd test still fails on MS-Windowsv8.2.5083Bram Moolenaar2022-06-122-4/+3
| | | | | Problem: Autocmd test still fails on MS-Windows. Solution: Change backward to forward slashes.
* patch 8.2.5082: retab test failsv8.2.5082Bram Moolenaar2022-06-122-3/+7
| | | | | Problem: Retab test fails. Solution: Disable the test for now.
* patch 8.2.5081: autocmd test fails on MS-Windowsv8.2.5081Bram Moolenaar2022-06-122-0/+5
| | | | | Problem: Autocmd test fails on MS-Windows. Solution: Set shellslash to get forward slashes.
* Update runtime files.Bram Moolenaar2022-06-1210-54/+120
|
* patch 8.2.5080: when indenting gets out of hand it is hard to stopv8.2.5080Bram Moolenaar2022-06-122-0/+4
| | | | | Problem: When indenting gets out of hand it is hard to stop. Solution: When line gets too long set got_int.
* patch 8.2.5079: DirChanged autocommand may use freed memoryv8.2.5079Bram Moolenaar2022-06-123-1/+12
| | | | | Problem: DirChanged autocommand may use freed memory. (Shane-XB Qian) Solution: Free the memory later. (closes #10555)
* patch 8.2.5078: substitute test has a one second delayv8.2.5078zeertzjq2022-06-122-5/+9
| | | | | Problem: Substitute test has a one second delay. Solution: Use ":silent!". Add another test case. (closes #10558)
* patch 8.2.5077: various warnings from clang on MS-Windowsv8.2.5077Yegappan Lakshmanan2022-06-117-18/+24
| | | | | Problem: Various warnings from clang on MS-Windows. Solution: Avoid the warnings. (Yegappan Lakshmanan, closes #10553)
* patch 8.2.5076: unnecessary codev8.2.5076zeertzjq2022-06-103-28/+10
| | | | | Problem: Unnecessary code. Solution: Remove code and replace with function call. (closes #10552)
* patch 8.2.5075: clang gives an out of bounds warningv8.2.5075Bram Moolenaar2022-06-102-1/+4
| | | | | Problem: Clang gives an out of bounds warning. Solution: adjust conditional expression (John Marriott)
* patch 8.2.5074: spell test fails on MS-Windowsv8.2.5074Bram Moolenaar2022-06-102-3/+3
| | | | | Problem: Spell test fails on MS-Windows. Solution: Do not change 'encoding'
* patch 8.2.5073: clang on MS-Windows produces warningsv8.2.5073Bram Moolenaar2022-06-0912-105/+137
| | | | | Problem: Clang on MS-Windows produces warnings. Solution: Avoid the warnings. (Yegappan Lakshmanan, closes #10546)
* Update runtime filesBram Moolenaar2022-06-0919-1829/+1136
|
* patch 8.2.5072: using uninitialized value and freed memory in spell commandv8.2.5072Bram Moolenaar2022-06-093-3/+24
| | | | | Problem: Using uninitialized value and freed memory in spell command. Solution: Initialize "attr". Check for empty line early.
* patch 8.2.5071: with some Mac OS version clockid_t is redefinedv8.2.5071ichizok2022-06-092-4/+5
| | | | | Problem: With some Mac OS version clockid_t is redefined. Solution: Adjust #ifdefs. (Ozaki Kiichi, closes #10549)
* patch 8.2.5070: unnecessary codev8.2.5070zeertzjq2022-06-093-16/+12
| | | | | Problem: Unnecessary code. Solution: Remove code that isn't needed. (closes #10534)
* patch 8.2.5069: various warnings from clang on MS-Windowsv8.2.5069Yegappan Lakshmanan2022-06-086-8/+9
| | | | | | Problem: Various warnings from clang on MS-Windows. Solution: Fix the code to avoid the warnings. (Yegappan Lakshmanan, closes #10538)
* patch 8.2.5068: gcc 12.1 warning when building teev8.2.5068Bram Moolenaar2022-06-082-2/+5
| | | | | Problem: Gcc 12.1 warning when building tee. Solution: Change type to size_t. (John Marriott)
* patch 8.2.5067: timer_create is not available on every Mac systemv8.2.5067Bram Moolenaar2022-06-082-1/+3
| | | | | | Problem: Timer_create is not available on every Mac system. (Hisashi T Fujinaka) Solution: Adjust #ifdef.
* patch 8.2.5066: timer_create is not available on every Mac systemv8.2.5066Bram Moolenaar2022-06-078-13/+246
| | | | | | Problem: Timer_create is not available on every Mac system. (Hisashi T Fujinaka) Solution: Adjust #ifdef.
* patch 8.2.5065: wrong return type for main() in tee.cv8.2.5065Bram Moolenaar2022-06-062-2/+3
| | | | | Problem: Wrong return type for main() in tee.c. Solution: Use "int" instead of "void". Remove unused variable.
* Update runtime files.Bram Moolenaar2022-06-0613-1190/+225
|
* patch 8.2.5064: no test for what 8.1.0052 fixesv8.2.5064zeertzjq2022-06-063-2/+34
| | | | | Problem: No test for what 8.1.0052 fixes. Solution: Add a test. (closes #10531)
* patch 8.2.5063: error for a command may go over the end of IObuffv8.2.5063Bram Moolenaar2022-06-063-2/+17
| | | | | Problem: Error for a command may go over the end of IObuff. Solution: Truncate the message.
* patch 8.2.5062: Coverity warns for dead codev8.2.5062Bram Moolenaar2022-06-063-9/+3
| | | | | Problem: Coverity warns for dead code. Solution: Remove the dead code.
* patch 8.2.5061: C89 requires signal handlers to return voidv8.2.5061Bram Moolenaar2022-06-0510-129/+49
| | | | | Problem: C89 requires signal handlers to return void. Solution: Drop RETSIGTYPE and hard-code a void return value.
* patch 8.2.5060: running configure failsv8.2.5060Bram Moolenaar2022-06-053-4/+4
| | | | | Problem: Running configure fails. Solution: Remove line break.
* patch 8.2.5059: autoconf 2.71 produces many obsolete warningsv8.2.5059Bram Moolenaar2022-06-053-171/+185
| | | | | | Problem: Autoconf 2.71 produces many obsolete warnings. Solution: Replace obsolete macros with non-obsolete ones, where the functionality does not change. (issue #10528)
* patch 8.2.5058: input() does not handle composing characters properlyv8.2.5058zeertzjq2022-06-053-1/+7
| | | | | | Problem: input() does not handle composing characters properly. Solution: Use mb_cptr2char_adv() instead of mb_ptr2char_adv(). (closes #10527)
* patch 8.2.5057: using gettimeofday() for timeout is very inefficientv8.2.5057Paul Ollis2022-06-0529-242/+811
| | | | | Problem: Using gettimeofday() for timeout is very inefficient. Solution: Set a platform dependent timer. (Paul Ollis, closes #10505)
* patch 8.2.5056: the channel log only contains some of the raw terminal outputv8.2.5056Bram Moolenaar2022-06-0410-63/+58
| | | | | Problem: The channel log only contains some of the raw terminal output. Solution: Add the "o" flag to log all terminal output. Use it for "--log".
* patch 8.2.5055: statusline is not updated when terminal title changesv8.2.5055LemonBoy2022-06-042-0/+5
| | | | | Problem: Statusline is not updated when terminal title changes. Solution: Redraw the status line when the title changes. (issue #10425)
* Update runtime filesBram Moolenaar2022-06-0331-2012/+1423
|
* patch 8.2.5054: no good filetype for conf files similar to dosiniv8.2.5054Mudskipper8752022-06-033-19/+22
| | | | | Problem: No good filetype for conf files similar to dosini. Solution: Add the confini filetype. (closes #10510)
* patch 8.2.5053: cannot have a comment halfway an expression in a blockv8.2.5053Bram Moolenaar2022-06-033-2/+49
| | | | | | Problem: Cannot have a comment halfway an expression in an autocmd command block. Solution: When skipping over the NL also skip over comments. (closes #10519)
* patch 8.2.5052: CI checkout step title is a bit crypticv8.2.5052Philip H2022-06-014-5/+11
| | | | | Problem: CI checkout step title is a bit cryptic. Solution: Add a better title. (closes #10509)