summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-02-21patch 8.1.0964: cannot see in CI why a screenshot test failedv8.1.0964Bram Moolenaar
Problem: Cannot see in CI why a screenshot test failed. Solution: Add info about the failure.
2019-02-21patch 8.1.0963: illegal memory access when using 'incsearch'v8.1.0963Bram Moolenaar
Problem: Illegal memory access when using 'incsearch'. Solution: Reset highlight_match when changing text. (closes #4022)
2019-02-21patch 8.1.0962: building with MinGW and static libs doesn't workv8.1.0962Bram Moolenaar
Problem: Building with MinGW and static libs doesn't work. (Salman Halim) Solution: Add -lgcc. (Ken Takata)
2019-02-21patch 8.1.0961: Mac: fsync may fail sometimesv8.1.0961Bram Moolenaar
Problem: Mac: fsync may fail sometimes. Solution: Do not check errno. (Yee Cheng Chin, closes #4025)
2019-02-20patch 8.1.0960: when using ConPTY garbage collection has undefined behaviorv8.1.0960Bram Moolenaar
Problem: When using ConPTY garbage collection has undefined behavior. Solution: Free the channel in a better way. (Nobuhiro Takasaki, closes #4020)
2019-02-20patch 8.1.0959: sorting large numbers is not testedv8.1.0959Bram Moolenaar
Problem: Sorting large numbers is not tested and does not work properly. Solution: Add test. Fix comparing lines with and without a number. (Dominique Pelle, closes #4017)
2019-02-20patch 8.1.0958: compiling weird regexp pattern is very slowv8.1.0958Bram Moolenaar
Problem: Compiling weird regexp pattern is very slow. Solution: When reallocating post list increase size by 50%. (Kuang-che Wu, closes #4012) Make assert_inrange() accept float values.
2019-02-20patch 8.1.0957: Mac: fsync fails on network sharev8.1.0957Bram Moolenaar
Problem: Mac: fsync fails on network share. Solution: Check for ENOTSUP. (Yee Cheng Chin, closes #4016)
2019-02-19patch 8.1.0956: using context:0 in 'diffopt' does not work wellv8.1.0956Bram Moolenaar
Problem: Using context:0 in 'diffopt' does not work well. Solution: Make zero context do the same as one line context. (closes #4005)
2019-02-19patch 8.1.0955: matchit autoload directory not in installerv8.1.0955Bram Moolenaar
Problem: Matchit autoload directory not in installer. (Chris Morgan) Solution: Adjust the NSIS script. (Christian Brabandt, closes #4006)
2019-02-19patch 8.1.0954: arguments of semsg() and siemsg() are not checkedv8.1.0954Bram Moolenaar
Problem: Arguments of semsg() and siemsg() are not checked. Solution: Add function prototype with __attribute__.
2019-02-19patch 8.1.0953: a very long file is truncated at 2^31 linesv8.1.0953Bram Moolenaar
Problem: A very long file is truncated at 2^31 lines. Solution: Use LONG_MAX for MAXLNUM. (Dominique Pelle, closes #4011)
2019-02-18patch 8.1.0952: compilation warnings when building the MS-Windows installerv8.1.0952Bram Moolenaar
Problem: Compilation warnings when building the MS-Windows installer. Solution: Fix buffer sizes. (Yasuhiro Matsumoto, closes #3999)
2019-02-18patch 8.1.0951: using WIN64 even though it is never definedv8.1.0951Bram Moolenaar
Problem: Using WIN64 even though it is never defined. Solution: Only use _WIN64. (Ken Takata, closes #3997)
2019-02-18patch 8.1.0950: using :python sets 'pyxversion' even when not executedv8.1.0950Bram Moolenaar
Problem: Using :python sets 'pyxversion' even when not executed. Solution: Check the "skip" flag. (Shane Harper, closes #3995)
2019-02-18patch 8.1.0949: MS-windows defines GUI macros different than other systemsv8.1.0949Bram Moolenaar
Problem: MS-windows defines GUI macros different than other systems. Solution: Swap FEAT_GUI and FEAT_GUI_MSWIN. (Hirohito Higashi, closes #3996)
2019-02-18patch 8.1.0948: when built without +eval "Vim --clean" produces errorsv8.1.0948Bram Moolenaar
Problem: When built without +eval "Vim --clean" produces errors. (James McCoy) Solution: Do not enable filetype detection.
2019-02-18patch 8.1.0947: using MSWIN before it is definedv8.1.0947Bram Moolenaar
Problem: Using MSWIN before it is defined. (Cesar Romani) Solution: Move the block that uses MSWIN to below including vim.h. (Ken Takata)
2019-02-18Revert change accidentally included in runtime file updates. Closes #3998.Bram Moolenaar
2019-02-17patch 8.1.0946: Coveralls is not very usefulv8.1.0946Bram Moolenaar
Problem: Coveralls is not very useful. Solution: Remove Coveralls badge, add badge for packages.
2019-02-17Update runtime files.Bram Moolenaar
2019-02-17patch 8.1.0945: internal error when using pattern with NL in the rangev8.1.0945Bram Moolenaar
Problem: Internal error when using pattern with NL in the range. Solution: Use an actual newline for the range. (closes #3989) Also fix error message. (Dominique Pelle)
2019-02-17patch 8.1.0944: format of nbdbg() arguments is not checkedv8.1.0944Bram Moolenaar
Problem: Format of nbdbg() arguments is not checked. Solution: Add format attribute. Fix reported problems. (Dominique Pelle, closes #3992)
2019-02-17patch 8.1.0943: still a trace of Farsi supportv8.1.0943Bram Moolenaar
Problem: Still a trace of Farsi support. Solution: Remove defining macros.
2019-02-17patch 8.1.0942: options window still checks for the multi_byte featurev8.1.0942Bram Moolenaar
Problem: Options window still checks for the multi_byte feature. Solution: Remove the unnecessary check. (Dominique Pelle, closes #3990)
2019-02-17patch 8.1.0941: macros for MS-Windows are inconsistentv8.1.0941Bram Moolenaar
Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and others. Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the GUI build. (Hirohito Higashi, closes #3932)
2019-02-17patch 8.1.0940: MS-Windows console resizing not handled properlyv8.1.0940Bram Moolenaar
Problem: MS-Windows console resizing not handled properly. Solution: Handle resizing the console better. (Nobuhiro Takasaki, closes #3968, closes #3611)
2019-02-17patch 8.1.0939: no completion for sign group namesv8.1.0939Bram Moolenaar
Problem: No completion for sign group names. Solution: Add completion for sign group names and buffer names. (Yegappan Lakshmanan, closes #3980)
2019-02-17patch 8.1.0938: background color is wrong in MS-Windows consolev8.1.0938Bram Moolenaar
Problem: Background color is wrong in MS-Windows console when not using VTP. Solution: Use g_attrCurrent. (Nobuhiro Takasaki, closes #3987)
2019-02-17patch 8.1.0937: invalid memory access in search patternv8.1.0937Bram Moolenaar
Problem: Invalid memory access in search pattern. (Kuang-che Wu) Solution: Check for incomplete collation element. (Dominique Pelle, closes #3985)
2019-02-16patch 8.1.0936: may leak memory when using 'vartabstop'v8.1.0936Bram Moolenaar
Problem: May leak memory when using 'vartabstop'. (Kuang-che Wu) Solution: Fix handling allocated memory for 'vartabstop'. (closes #3976)
2019-02-16patch 8.1.0935: old regexp engine may use invalid bufferv8.1.0935Bram Moolenaar
Problem: Old regexp engine may use invalid buffer for 'iskeyword' or uninitialized buffer pointer. (Kuang-che Wu) Solution: Set rex.reg_buf when compiling the pattern. (closes #3972)
2019-02-16patch 8.1.0934: invalid memory access in search patternv8.1.0934Bram Moolenaar
Problem: Invalid memory access in search pattern. (Kuang-che Wu) Solution: Check for incomplete equivalence class. (closes #3970)
2019-02-16patch 8.1.0933: When using VTP scroll region isn't used properlyv8.1.0933Bram Moolenaar
Problem: When using VTP scroll region isn't used properly. Solution: Make better use of the scroll region. (Nobuhiro Takasaki, closes #3974)
2019-02-16patch 8.1.0932: Farsi support is outdated and unusedv8.1.0932Bram Moolenaar
Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
2019-02-16patch 8.1.0931: vtp_working included in GUI build but unusedv8.1.0931Bram Moolenaar
Problem: vtp_working included in GUI build but unused. Solution: Adjust #ifdefs. (Ken Takata, closes #3971)
2019-02-16patch 8.1.0930: typo in Makefilev8.1.0930Bram Moolenaar
Problem: Typo in Makefile. Solution: Change ABORT_CLFAGS to ABORT_CFLAGS. (Kuang-che Wu, closes #3977)
2019-02-16patch 8.1.0929: no error when requesting ConPTY but it's not availablev8.1.0929Bram Moolenaar
Problem: No error when requesting ConPTY but it's not available. Solution: Add an error message. (Hirohito Higashi, closes #3967)
2019-02-16patch 8.1.0928: stray log function callv8.1.0928Bram Moolenaar
Problem: Stray log function call. Solution: Remove the log function call.
2019-02-15patch 8.1.0927: USE_CR is never definedv8.1.0927Bram Moolenaar
Problem: USE_CR is never defined. Solution: Remove usage of USE_CR. (Ken Takata, closes #3958)
2019-02-15patch 8.1.0926: no test for :wnext, :wNext and :wpreviousv8.1.0926Bram Moolenaar
Problem: No test for :wnext, :wNext and :wprevious. Solution: Add a test. (Dominique Pelle, closes #3963)
2019-02-15patch 8.1.0925: terminal scrollback test still still flakyv8.1.0925Bram Moolenaar
Problem: Terminal scrollback test still still flaky. Solution: Explicitly set the shell. Disable ruler. (Ozaki Kiichi, closes #3966)
2019-02-15patch 8.1.0924: terminal scrollback test still flakyv8.1.0924Bram Moolenaar
Problem: Terminal scrollback test still flaky. Solution: Wait a bit longer before running the tail command.
2019-02-15patch 8.1.0923: terminal dump diff swap does not update file namesv8.1.0923Bram Moolenaar
Problem: Terminal dump diff swap does not update file names. Solution: Also swap the file name. Add a test.
2019-02-14patch 8.1.0922: terminal scrollback test is flakyv8.1.0922Bram Moolenaar
Problem: Terminal scrollback test is flaky. Solution: Wait a bit before running the tail command.
2019-02-14patch 8.1.0921: terminal test sometimes fails; using memory after freev8.1.0921Bram Moolenaar
Problem: Terminal test sometimes fails; using memory after free. Solution: Fee memory a bit later. Add test to cover this. Disable flaky screenshot test. (closes #3956)
2019-02-14patch 8.1.0920: in Terminal-Normal mode job output messes up the windowv8.1.0920Bram Moolenaar
Problem: In Terminal-Normal mode job output messes up the window. Solution: Postpone scrolling and updating the buffer when in Terminal-Normal mode.
2019-02-14patch 8.1.0919: compiler warningsv8.1.0919Bram Moolenaar
Problem: Compiler warnings. Solution: Add type casts. (Mike Williams)
2019-02-14patch 8.1.0918: MS-Windows: startup messages are not convertedv8.1.0918Bram Moolenaar
Problem: MS-Windows: startup messages are not converted. Solution: Convert messages when the current codepage differs from 'encoding'. (Yasuhiro Matsumoto, closes #3914)
2019-02-14patch 8.1.0917: double free when running out of memoryv8.1.0917Bram Moolenaar
Problem: Double free when running out of memory. Solution: Remove one free. (Ken Takata, closes #3955)