Patch 9.0.0381

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0381 Problem:Writefile test leaves files behind. Solution: Fix the file names of files to be deleted. (Dominique Pellé, closes #11056) Files: src/testdir/test_writefile.vim *** ../vim-9.0.0380/src/testdir/test_writefile.vim 2022-09-04 15:40:31.816188110

Re: [patch] documentation fixes

2022-09-04 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Attached patch fixes few mistakes in Vim documentation. Thanks! -- An operatingsystem is just a name you give to the rest of bloating idiosyncratic machine-based-features you left out of your editor. (author unknown) /// Bram Moolenaar --

[patch] documentation fixes

2022-09-04 Fir de Conversatie Dominique Pellé
Attached patch fixes few mistakes in Vim documentation. 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 9.0.0380

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0380 Problem:Deleting files in tests is a hassle. Solution: Use the new 'D' flag of writefile(). Files: src/testdir/test_arglist.vim, src/testdir/test_assert.vim, src/testdir/test_autocmd.vim *** ../vim-9.0.0380/src/testdir/test_arglist.vim

Re: Errors in $VIMRUNTIME/autoload/dist/ft.vim at patchlevel 9.0.376

2022-09-04 Fir de Conversatie Bram Moolenaar
Tony wrote: > This did not happen at patchlevel 372 > > Error detected while processing command line..script > /root/Session.vim[12]..BufRead Autocommands for "*.htm"..script > /usr/local/share/vim/vim90/autoload/dist/ft.vim: > line 114: > E15: Invalid expression: " '')" > E475: Invalid

Patch 9.0.0379

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0379 Problem:Cleaning up after writefile() is a hassle. Solution: Add the 'D' flag to defer deleting the written file. Very useful in tests. Files: runtime/doc/builtin.txt, src/filepath.c, src/userfunc.c, src/proto/userfunc.pro, src/vim9execute.c,

Patch 9.0.0377

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0377 (after 9.0.0376) Problem:Argument assignment does not work. Solution: Skip over "=". Files: src/userfunc.c *** ../vim-9.0.0376/src/userfunc.c 2022-09-04 12:47:15.414692249 +0100 --- src/userfunc.c 2022-09-04 13:34:02.255756885 +0100 *** ***

Patch 9.0.0378

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0378 (after 9.0.0374) Problem:Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize it. Files: src/spellfile.c *** ../vim-9.0.0377/src/spellfile.c 2022-09-04 11:55:16.154941174 +0100 --- src/spellfile.c 2022-09-04 13:43:56.063482484

Errors in $VIMRUNTIME/autoload/dist/ft.vim at patchlevel 9.0.376

2022-09-04 Fir de Conversatie Tony Mechelynck
This did not happen at patchlevel 372 Error detected while processing command line..script /root/Session.vim[12]..BufRead Autocommands for "*.htm"..script /usr/local/share/vim/vim90/autoload/dist/ft.vim: line 114: E15: Invalid expression: " '')" E475: Invalid argument: default = '') Error

-Wmaybe-uninitialized in Normal, Big and Huge spellfile.c after applying patches 9.0. 373 to 375

2022-09-04 Fir de Conversatie Tony Mechelynck
gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo

Patch 9.0.0376

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0376 Problem:Clang warns for dead assignments. Solution: Adjust the code. (Yegappan Lakshmanan, closes #11048) Files: src/insexpand.c, src/ops.c, src/os_unix.c, src/userfunc.c, src/vim9instr.c, src/viminfo.c, src/xxd/xxd.c *** ../vim-9.0.0375/src/insexpand.c

Patch 9.0.0375

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0375 Problem:The footer feature is unused. Solution: Remove FEAT_FOOTER and code. Files: src/feature.h, src/evalfunc.c, src/gui.c, src/gui_motif.c, src/version.c, src/gui.h *** ../vim-9.0.0374/src/feature.h 2022-08-30 15:05:27.016802522 +0100 ---

Patch 9.0.0374

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0374 (after 9.0.0367) Problem:Coverity still complains about dropping sign of character. Solution: Add intermediate variable. Files: src/spellfile.c *** ../vim-9.0.0373/src/spellfile.c 2022-09-03 12:53:17.223026199 +0100 --- src/spellfile.c 2022-09-04

Patch 9.0.0373

2022-09-04 Fir de Conversatie Bram Moolenaar
Patch 9.0.0373 Problem:Coverity warns for NULL check and unused return value. Solution: Remove the NULL check, it was already checked earlier. Add (void) to ignore the return value. Files: src/vim9execute.c, src/ex_eval.c *** ../vim-9.0.0372/src/vim9execute.c