[patch] doc fixes for Vim-8.2.3070

2021-06-27 Fir de Conversatie Dominique Pellé
Hi Attached patch fixes a few typos in Vim-8.2.3070 doc. Regards Dominique -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this

Patch 8.2.3070

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3070 Problem:Not enough testing for shell use. Solution: Add a bit more testing. (Yegappan Lakshmanan, closes #8469) Files: src/testdir/test_shell.vim, src/testdir/test_startup.vim *** ../vim-8.2.3069/src/testdir/test_shell.vim 2021-06-27 12:07:12.71041 +0200 ---

Patch 8.2.3069

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3069 Problem:Error messages are spread out. Solution: Move some error messages to errors.h. Use clearer names. Files: src/errors.h, src/globals.h, src/arglist.c, src/buffer.c, src/channel.c, src/eval.c, src/evalfunc.c, src/evalvars.c,

Patch 8.2.3068

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3068 Problem:Unicode tables are slightly outdated. Solution: Update the tables for Unicode release 13. (Christian Brabandt closes #8430) Files: runtime/tools/unicode.vim, src/mbyte.c *** ../vim-8.2.3067/runtime/tools/unicode.vim 2018-07-14 19:27:57.0

Re: Patch 8.2.3067

2021-06-27 Fir de Conversatie Elimar Riesebieter
* Bram Moolenaar [2021-06-27 19:05 +0200]: > > Patch 8.2.3067 > Problem:Building fails with Athena. (Elimar Riesebieter) > Solution: Adjust #ifdefs and add the 'drop_file' feature. > Files: src/evalfunc.c, src/testing.c, src/testdir/test_gui.vim Builds fine now :-) Thanks for the

Re: Failure building 8.2.3066

2021-06-27 Fir de Conversatie Bram Moolenaar
Elimar Riesebieter wrote: > Environment: Debian Sid > Term: tmux > Compiler: clang-12 > > > /usr/bin/ld: objects/testing.o: in function `f_test_gui_drop_files': > ./src/vim-athena/testing.c:1311: undefined reference to `gui_handle_drop' > clang: error: linker command failed with exit code 1

Patch 8.2.3067

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3067 Problem:Building fails with Athena. (Elimar Riesebieter) Solution: Adjust #ifdefs and add the 'drop_file' feature. Files: src/evalfunc.c, src/testing.c, src/testdir/test_gui.vim *** ../vim-8.2.3066/src/evalfunc.c 2021-06-24 19:55:23.906419441 +0200 ---

Failure building 8.2.3066

2021-06-27 Fir de Conversatie Elimar Riesebieter
Environment: Debian Sid Term: tmux Compiler: clang-12 /usr/bin/ld: objects/testing.o: in function `f_test_gui_drop_files': ./src/vim-athena/testing.c:1311: undefined reference to `gui_handle_drop' clang: error: linker command failed with exit code 1 (use -v to see invocation) link.sh: Linking

Patch 8.2.3066

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3066 Problem:Vim9: debugging lambda does not work. Solution: Use the compile type of the function when compiling a lambda. (closes #8412) Files: src/vim9compile.c, src/testdir/test_debugger.vim *** ../vim-8.2.3065/src/vim9compile.c 2021-06-27

Patch 8.2.3065

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3065 Problem:Vim9: error when sourcing script twice and reusing a function name. Solution: Check if the function is dead. (closes #8463) Files: src/vim9compile.c, src/testdir/test_vim9_script.vim *** ../vim-8.2.3064/src/vim9compile.c 2021-06-26

Patch 8.2.3064

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3064 Problem:Vim9: in script cannot set item in uninitialized list. Solution: When a list is NULL allocate an empty one. (closes #8461) Files: src/eval.c, src/testdir/test_vim9_assign.vim *** ../vim-8.2.3063/src/eval.c 2021-06-26 15:00:55.881276189 +0200 --- src/eval.c

Patch 8.2.3063

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3063 Problem:Crash when switching 'cryptmethod' to xchaha20 with an existing undo file. (Martin Tournoij) Solution: Disable reading undo file when decoding can't be done inplace. (issue #8467) Files: src/fileio.c, src/bufwrite.c ***

Patch 8.2.3062

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3062 Problem:Internal error when adding several text properties. Solution: Do not handle text properties when deleting a line for splitting a data block. (closes #8466) Files: src/structs.h, src/memline.c, src/testdir/test_textprop.vim ***

Patch 8.2.3061

2021-06-27 Fir de Conversatie Bram Moolenaar
Patch 8.2.3061 Problem:Testing the shell option is incomplete and spread out. Solution: Move shell tests to one file and increase coverage. (Yegappan Lakshmanan, closes #8464) Files: src/testdir/Make_all.mak, src/testdir/test_functions.vim,