Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie Christian J. Robinson
It works for me as well. On Tue, Jun 14, 2022 at 2:46 PM John Marriott wrote: > > > On 15-June-2022 05:57, Yegappan Lakshmanan wrote: > > Hi, > > > > On Tue, Jun 14, 2022 at 12:41 PM John Marriott > > wrote: > >> On 15-June-2022 05:34, Christian J. Robinson wrote: > >>> This is related to my pr

Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie John Marriott
On 15-June-2022 05:57, Yegappan Lakshmanan wrote: Hi, On Tue, Jun 14, 2022 at 12:41 PM John Marriott wrote: On 15-June-2022 05:34, Christian J. Robinson wrote: This is related to my problem. I temporarily fixed the problem with this command-line: CC='' CXX='' make ... Thanks :-) Can yo

Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > On Tue, Jun 14, 2022 at 12:41 PM John Marriott > wrote: > > > > On 15-June-2022 05:34, Christian J. Robinson wrote: > > > This is related to my problem. I temporarily fixed the problem with > > > this command-line: > > > CC='' CXX='' make ... > > > > > Thanks :-) > > Can you

Patch 8.2.5096

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5096 (after 8.2.5095) Problem:Terminal test still fails with some shell commands. Solution: Add missing "call". (closes #10530) Files: src/testdir/test_terminal.vim *** ../vim-8.2.5095/src/testdir/test_terminal.vim 2022-06-14 19:52:12.884171367 +0100 --- src/testdir

Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie Yegappan Lakshmanan
Hi, On Tue, Jun 14, 2022 at 12:41 PM John Marriott wrote: > > On 15-June-2022 05:34, Christian J. Robinson wrote: > > This is related to my problem. I temporarily fixed the problem with > > this command-line: > > CC='' CXX='' make ... > > > Thanks :-) > Can you try the attached patch and see whe

Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie John Marriott
On 15-June-2022 05:34, Christian J. Robinson wrote: This is related to my problem. I temporarily fixed the problem with this command-line: CC='' CXX='' make ... Thanks :-) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are r

Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie Christian J. Robinson
This is related to my problem. I temporarily fixed the problem with this command-line: CC='' CXX='' make ... On Tue, Jun 14, 2022 at 1:26 PM John Marriott wrote: > > On 14-June-2022 21:31, Bram Moolenaar wrote: > > Patch 8.2.5087 > > Problem:Cannot build with clang on MS-Windows. > > Solutio

Re: Cannot build any more using Cygwin's MinGW

2022-06-14 Fir de Conversatie Christian J. Robinson
It works if I use this command-line: CC='' CXX='' make -f Make_ming.mak -j16 On Tue, Jun 14, 2022 at 1:23 PM Christian J. Robinson wrote: > Command line: > make -f Make_ming.mak -j16 > > Attached are my Make_ming.mak and Make_cyg_ming.mak > > I just noticed that for some reason it's just using "

Re: Patch 8.2.5087

2022-06-14 Fir de Conversatie John Marriott
On 14-June-2022 21:31, Bram Moolenaar wrote: Patch 8.2.5087 Problem:Cannot build with clang on MS-Windows. Solution: Add support for building with clang. (Yegappan Lakshmanan, closes #10557) Files: src/GvimExt/Make_ming.mak, src/INSTALLpc.txt, src/Make_cyg_m

Re: Cannot build any more using Cygwin's MinGW

2022-06-14 Fir de Conversatie Christian J. Robinson
Command line: make -f Make_ming.mak -j16 Attached are my Make_ming.mak and Make_cyg_ming.mak I just noticed that for some reason it's just using "cc" instead of "x86_64-w64-mingw32-gcc" like it should. On Tue, Jun 14, 2022 at 1:07 PM Yegappan Lakshmanan wrote: > Hi, > > Are you setting the "CC

Re: Cannot build any more using Cygwin's MinGW

2022-06-14 Fir de Conversatie Yegappan Lakshmanan
Hi, Are you setting the "CC" or "CXX" environment variables? Can you describe the steps (and the environment) you are using to build Vim using MingW? - Yegappan On Tue, Jun 14, 2022 at 12:02 PM Christian J. Robinson wrote: > > In file included from vim.h:279, > from alloc.c:14

Cannot build any more using Cygwin's MinGW

2022-06-14 Fir de Conversatie Christian J. Robinson
In file included from vim.h:279, from alloc.c:14: os_win32.h:16:11: fatal error: direct.h: No such file or directory 16 | # include // for _mkdir() | ^~ compilation terminated. make: *** [Make_cyg_ming.mak:1222: gobjx86-64/alloc.o] Error 1 mak

Patch 8.2.5095

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5095 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) Files: src/testdir/test_terminal.vim *** ../vim-8.2.5094/src/testdir/test_terminal.vim

Re: Patch 8.2.5089

2022-06-14 Fir de Conversatie Yegappan Lakshmanan
Hi, On Tue, Jun 14, 2022 at 10:33 AM Christ van Willegen wrote: > > Op di 14 jun. 2022 14:43 schreef Bram Moolenaar : >> >> >> Patch 8.2.5089 >> Problem:Some functions return a different value on failure. >> Solution: Initialize the return value earlier. (Yegappan Lakshmanan, >>

Re: Patch 8.2.5089

2022-06-14 Fir de Conversatie Christ van Willegen
Hi all, Op di 14 jun. 2022 14:43 schreef Bram Moolenaar : > > Patch 8.2.5089 > Problem:Some functions return a different value on failure. > Solution: Initialize the return value earlier. (Yegappan Lakshmanan, > closes #10568); > > + if (rettv_list_alloc(rettv) == FAIL) > +

Patch 8.2.5094

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5094 Problem:MS-Windows GUI: empty command may cause a dialog. Solution: Delete the dialog file. Improve the message. Files: src/testdir/runtest.vim, src/testdir/test_ex_mode.vim *** ../vim-8.2.5093/src/testdir/runtest.vim 2022-06-13 21:42:40.949531347 +0100 --- src/t

Patch 8.2.5093

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5093 Problem:Error message for unknown command may mention the command twice. (Malcolm Rowe) Solution: Add the did_append_cmd flag. (closes #10570) Files: src/ex_docmd.c *** ../vim-8.2.5092/src/ex_docmd.c 2022-06-14 15:43:14.876748322 +0100 --- src/ex_docmd

Patch 8.2.5092

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5092 Problem:Using "'<,'>" in Ex mode may compare unrelated pointers. Solution: Set eap->cmd to "+" only later. Files: src/ex_docmd.c *** ../vim-8.2.5091/src/ex_docmd.c 2022-06-14 13:30:31.640876084 +0100 --- src/ex_docmd.c 2022-06-14 15:42:53.780803667 +0100

Patch 8.2.5091

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5091 Problem:Terminal test fails with some shell commands. Solution: Disable setting the window title. (closes #10530) Files: src/testdir/test_terminal.vim *** ../vim-8.2.5090/src/testdir/test_terminal.vim 2022-05-20 10:10:29.948122642 +0100 --- src/testdir/test_term

Patch 8.2.5090

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5090 Problem:MS-Windows: vim.def is no longer used. Solution: Delete vim.def. (Ken Takata, closes #10569) Files: Filelist, Makefile, src/vim.def *** ../vim-8.2.5089/Filelist2022-05-06 16:32:21.569543796 +0100 --- Filelist2022-06-14 13:56:16.488903512 +0100 *

Patch 8.2.5089

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5089 Problem:Some functions return a different value on failure. Solution: Initialize the return value earlier. (Yegappan Lakshmanan, closes #10568) Files: src/autocmd.c, src/dict.c, src/evalfunc.c, src/list.c *** ../vim-8.2.5088/src/autocmd.c 2022-06-01 1

Patch 8.2.5088

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5088 Problem:Value of cmod_verbose is a bit complicated to use. Solution: Use zero for not set, value + 1 when set. (closes #10564) Files: src/ex_docmd.c, src/ex_getln.c, src/globals.h, src/structs.h *** ../vim-8.2.5087/src/ex_docmd.c 2022-06-12 11:49:11.596611728 +010

Patch 8.2.5087

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5087 Problem:Cannot build with clang on MS-Windows. Solution: Add support for building with clang. (Yegappan Lakshmanan, closes #10557) Files: src/GvimExt/Make_ming.mak, src/INSTALLpc.txt, src/Make_cyg_ming.mak *** ../vim-8.2.5086/src/GvimExt/Make_mi

Patch 8.2.5086

2022-06-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.5086 Problem:CI runs on Windows 2019. Solution: Switch to Windows 2022. Files: .github/workflows/ci.yml *** ../vim-8.2.5085/.github/workflows/ci.yml2022-06-01 21:26:30.069442412 +0100 --- .github/workflows/ci.yml2022-06-14 11:33:37.300393552 +0100 *** *