Re: Running new styles tests on MS-Windows

2016-03-18 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > How do you run the new style tests on MS-Windows. I am trying to use > the following command: > > make -f Make_ming.mak test_quickfix.res > > This doesn't work (as there are no rules to build .res files). A > similar command works on Linux like systems. cd testdir

Re: Patch 7.4.1577

2016-03-18 Fir de Conversatie Kent Sibilev
On Wednesday, March 16, 2016 at 10:43:13 AM UTC-4, Bram Moolenaar wrote: > Kent Sibilev wrote: > > > On Tuesday, March 15, 2016 at 2:33:55 PM UTC-4, Bram Moolenaar wrote: > > > Patch 7.4.1577 > > > Problem:Cannot pass "dict.Myfunc" around as a partial. > > > Solution: Create a partial when

Re: [patch] fixed compilation warning in ex_cmds2.c

2016-03-18 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Attached patch fixes this compilation warning in vim-7.4.1579: > > ex_cmds2.c: In function 'check_due_timer': > ex_cmds2.c:1230:12: warning: 'next_due' may be used uninitialized in > this function [-Wmaybe-uninitialized] > return next_due; > ^ Thanks. Using

Re: Patch 7.4.1582

2016-03-18 Fir de Conversatie Bram Moolenaar
Kent Sibilev wrote: > > > On Wednesday, March 16, 2016 at 5:52:38 PM UTC-4, Bram Moolenaar wrote: > > > > Patch 7.4.1582 > > > > Problem:Get E923 when using function(dict.func, [], dict). (Kent > > > > Sibilev) > > > > Storing a function with a dict in a variable drops the dict

Re: Patch 7.4.1577

2016-03-18 Fir de Conversatie Raymond Ko
On Wednesday, March 16, 2016 at 10:33:24 AM UTC-4, mattn wrote: > On Wednesday, March 16, 2016 at 11:23:06 PM UTC+9, Raymond Ko wrote: > > On Tuesday, March 15, 2016 at 6:10:34 PM UTC-4, Kent Sibilev wrote: > > > On Tuesday, March 15, 2016 at 2:33:55 PM UTC-4, Bram Moolenaar wrote: > > > > Patch

Re: Patch 7.4.1582

2016-03-18 Fir de Conversatie Kent Sibilev
On Thursday, March 17, 2016 at 6:22:25 PM UTC-4, Bram Moolenaar wrote: > Kent Sibilev wrote: > > > > > On Wednesday, March 16, 2016 at 5:52:38 PM UTC-4, Bram Moolenaar wrote: > > > > > Patch 7.4.1582 > > > > > Problem:Get E923 when using function(dict.func, [], dict). (Kent > > > > >

Re: [bug] crash with use of freed memory

2016-03-18 Fir de Conversatie h_east
Hi Dominique and list, 2016-3-19(Sat) 10:01:43 UTC+9 h_east: > Hi, > > 2016-3-19(Sat) 5:18:03 UTC+9 Dominique Pelle: > > Hi > > > > afl-fuzz found another case that crashes > > Vim-7.4.1591 and older. > > > > $ cat > crash.vim < > fun R(n) > > wincmd p > > only > > endfun > > > > helpgrep

Re: update vim to python 3.4/3.5

2016-03-18 Fir de Conversatie rameo
Hi Ken, Thank you very much for your reply. I'm using gvim-7-4-1525.exe Happy to read that the nightly builds are using Python 3.4. Tnx again. -- -- 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

Re: Patch 7.4.1577

2016-03-18 Fir de Conversatie Ken Takata
Hi, 2016/3/16 Wed 3:33:55 UTC+9 Bram Moolenaar wrote: > Patch 7.4.1577 > Problem:Cannot pass "dict.Myfunc" around as a partial. > Solution: Create a partial when expected. > Files: src/eval.c, src/testdir/test_partial.vim > + if (rettv->v_type == VAR_FUNC && selfdict != NULL) > +

Patch 7.4.1580

2016-03-18 Fir de Conversatie Bram Moolenaar
Patch 7.4.1580 Problem:Crash when using function reference. (Luchr) Solution: Set initial refcount. (Ken Takata, closes #690) Files: src/eval.c, src/testdir/test_partial.vim *** ../vim-7.4.1579/src/eval.c 2016-03-15 23:10:26.404712179 +0100 --- src/eval.c 2016-03-16

Patch 7.4.1589

2016-03-18 Fir de Conversatie Bram Moolenaar
Patch 7.4.1589 Problem:Combining dict and args with partial doesn't always work. Solution: Use the arguments from the partial. Files: src/eval.c, src/testdir/test_partial.vim *** ../vim-7.4.1588/src/eval.c 2016-03-17 21:11:48.392657218 +0100 --- src/eval.c 2016-03-17