Re: Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ken Takata
Hi, 2018/8/3 Fri 8:10:19 UTC+9 Ni Va wrote: > if_ruby.obj : error LNK2001: symbole externe non résolu _rb_intern It seems that Vim 8.1.0232 causes the issue. I wrote a patch for this: https://github.com/vim/vim/pull/3267#issuecomment-410120327 Regards, Ken Takata -- -- You received this messa

[patch] fix document

2018-08-02 Fir de Conversatie h_east
Hi Bram and developers, I attach the document patch that fixed some issues reported to vim-jp. autocmd.txt - The "`" is missing. change.txt - s/Vim Script/Vim script/ - Misplaced "<" eval.txt - Inseert space before "[" in function argument. options.txt - s/vim/Vim/ - s/don't want turn/don't wa

Re: Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ni Va
Le jeudi 2 août 2018 16:59:50 UTC+2, Ni Va a écrit : > Le jeudi 2 août 2018 15:37:43 UTC+2, Ken Takata a écrit : > > Hi, > > > > 2018/8/2 Thu 20:44:34 UTC+9 Ni Va wrote: > > > Hi, > > > > > > Trying to compile last vim 8.1.233 x86 source, it fails on ruby config.h > > > > > > > > > This is the

Re: [patch] `:help -?` does not jump to the document properly.

2018-08-02 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > > > 2018-5-29(Tue) 9:28:28 UTC+9 h_east: > > > > Hi Bram and list, > > > > > > > > `:help -?` will jump to `-+` instead of `-?`. > > > > > > > > Attached patch fixes this. > > > > > > I found similar issues. > > > The following help-tag could not jump correctly. > >

Patch 8.1.0235

2018-08-02 Fir de Conversatie Bram Moolenaar
Patch 8.1.0235 (after 8.1.0231) Problem:More help tags that jump to the wrong location. Solution: Add more exceptions and a table for "expr-" tags. (Hirohito Higashi) Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim *** ../vim-8.1.0234/src/ex_cmds.c 2018-08-0

Re: if_perl

2018-08-02 Fir de Conversatie Bram Moolenaar
Damien wrote: > A another Perl patch. > > https://framagit.org/Damien43/patches/raw/master/vim/perl-SvREFCNT++.patch > > This fix the suspicious test and add one `SvREFCNT_dec()` to avoid > leaks. > > Please check. Well, don't know how to check exactly, but the test fails without the code ch

Patch 8.1.0234

2018-08-02 Fir de Conversatie Bram Moolenaar
Patch 8.1.0234 Problem:Incorrect reference counting in Perl interface. Solution: Call SvREFCNT_inc more often, add a test. (Damien) Files: src/if_perl.xs, src/testdir/test_perl.vim *** ../vim-8.1.0233/src/if_perl.xs 2018-07-25 22:02:32.231966301 +0200 --- src/if_perl.xs 201

Re: [vim/vim] Suppression of E42 with quickfix (#3270)

2018-08-02 Fir de Conversatie Yegappan Lakshmanan
Hi, On Wed, Aug 1, 2018 at 4:36 PM, Nobuhiro Takasaki wrote: > I forgot the importaht thing. This is reproduced. > > compiler! msvc > function! QFMakeConv() > let q = getqflist() > call filter(q, "v:val.text !~ 'Microsoft'") > call filter(q, "v:val.text !~ 'Copyright'") > call fil

Re: Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ni Va
Le jeudi 2 août 2018 15:37:43 UTC+2, Ken Takata a écrit : > Hi, > > 2018/8/2 Thu 20:44:34 UTC+9 Ni Va wrote: > > Hi, > > > > Trying to compile last vim 8.1.233 x86 source, it fails on ruby config.h > > > > > > This is the issue: > > > > C:\ThirdParty\Ruby25-x86\include\ruby-2.5.0\i386-mswin32_

Re: Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ken Takata
Hi, 2018/8/2 Thu 23:17:46 UTC+9 Ni Va wrote: > Le jeudi 2 août 2018 15:37:43 UTC+2, Ken Takata a écrit : > > Hi, > > > > 2018/8/2 Thu 20:44:34 UTC+9 Ni Va wrote: > > > Hi, > > > > > > Trying to compile last vim 8.1.233 x86 source, it fails on ruby config.h > > > > > > > > > This is the issue:

Re: Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ni Va
Le jeudi 2 août 2018 15:37:43 UTC+2, Ken Takata a écrit : > Hi, > > 2018/8/2 Thu 20:44:34 UTC+9 Ni Va wrote: > > Hi, > > > > Trying to compile last vim 8.1.233 x86 source, it fails on ruby config.h > > > > > > This is the issue: > > > > C:\ThirdParty\Ruby25-x86\include\ruby-2.5.0\i386-mswin32_

Re: Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ken Takata
Hi, 2018/8/2 Thu 20:44:34 UTC+9 Ni Va wrote: > Hi, > > Trying to compile last vim 8.1.233 x86 source, it fails on ruby config.h > > > This is the issue: > > C:\ThirdParty\Ruby25-x86\include\ruby-2.5.0\i386-mswin32_140\ruby/config.h(4): > fatal error C1189: #error: MSC version unmatch: _MSC_V

if_perl

2018-08-02 Fir de Conversatie Damien
Hi Bram and list. A another Perl patch. https://framagit.org/Damien43/patches/raw/master/vim/perl-SvREFCNT++.patch This fix the suspicious test and add one `SvREFCNT_dec()` to avoid leaks. Please check. Regards, Damien -- -- You received this message from the "vim_dev" maillist. Do not top-p

Compile Err with Ruby : MSC version unmatch: _MSC_VER: 1912 is expected.

2018-08-02 Fir de Conversatie Ni Va
Hi, Trying to compile last vim 8.1.233 x86 source, it fails on ruby config.h This is the issue: C:\ThirdParty\Ruby25-x86\include\ruby-2.5.0\i386-mswin32_140\ruby/config.h(4): fatal error C1189: #error: MSC version unmatch: _MSC_VER: 1912 is expected. NMAKE : fatal error U1077: '"C:\Program F

Re: [patch] `:help -?` does not jump to the document properly.

2018-08-02 Fir de Conversatie h_east
Hi Bram, 2018-5-31(Thu) 1:03:55 UTC+9 Bram Moolenaar: > Hirohito Higashi wrote: > > > 2018-5-29(Tue) 9:28:28 UTC+9 h_east: > > > Hi Bram and list, > > > > > > `:help -?` will jump to `-+` instead of `-?`. > > > > > > Attached patch fixes this. > > > > I found similar issues. > > The following