Re: Patch 7.3.715

2012-11-22 Fir de Conversatie Christian Brabandt
On Thu, November 22, 2012 08:47, Ike Devolder wrote: [Patch 7.3.315] Anyone else having issues with this patch ? In my day to day work i use vim in combination with syntastic to do some linting for me. Since this patch i have frequent segfaults when syntastic kicks in. It seems related to

Re: Patch 7.3.715

2012-11-22 Fir de Conversatie Ike Devolder
On Thu, Nov 22, 2012 at 09:08:48AM +0100, Christian Brabandt wrote: On Thu, November 22, 2012 08:47, Ike Devolder wrote: [Patch 7.3.315] Anyone else having issues with this patch ? In my day to day work i use vim in combination with syntastic to do some linting for me. Since this patch i

E763: Word characters differ between spell files

2012-11-22 Fir de Conversatie glts
(I posted this in vim_use a week ago but got no response. Trying again here, I would be thankful if anybody can try to reproduce this.) Hello list I am trying to use two spelling languages at the same time: :set spelllang=en_gb,de_ch :set spell Since the de_ch spelllang isn't included

Vim expr parsing bug

2012-11-22 Fir de Conversatie Andy Wokula
Vim Parsing Bug func! Add2(x1, x2) return a:x1 + a:x2 endfunc :echo function('Add2')(2,3) 5 (ok) Bug: :echo 1 ? function('Add2')(1,2) : function('Add2')(2,3) :echo 0 ? function('Add2')(1,2) : function('Add2')(2,3) Error detected while processing D1223.vim: line 17: E110: Missing

Re: Functions with [range] do not preserve the cursor line

2012-11-22 Fir de Conversatie Andy Wokula
Am 22.11.2012 07:27, schrieb Christian Brabandt: On Thu, November 22, 2012 04:42, Nate Soares wrote: Here's a patch that adds the stay argument to the :function command. Thoughts? That is nice. ,[ :h todo.txt ]- | :function f(x) keepjumps creates a function where every command is |

Re: Patch 7.3.715

2012-11-22 Fir de Conversatie Ike Devolder
Op donderdag 22 november 2012 20:24:40 schreef u: On Thu, Nov 22, 2012 at 03:08:14PM +0100, Ike Devolder wrote: On Thu, Nov 22, 2012 at 09:08:48AM +0100, Christian Brabandt wrote: On Thu, November 22, 2012 08:47, Ike Devolder wrote: [Patch 7.3.315] Anyone else having issues with

Re: Vim expr parsing bug

2012-11-22 Fir de Conversatie Bram Moolenaar
Andy Wokula wrote: Vim Parsing Bug func! Add2(x1, x2) return a:x1 + a:x2 endfunc :echo function('Add2')(2,3) 5 (ok) Bug: :echo 1 ? function('Add2')(1,2) : function('Add2')(2,3) :echo 0 ? function('Add2')(1,2) : function('Add2')(2,3) Error detected while processing

Re: E763: Word characters differ between spell files

2012-11-22 Fir de Conversatie Bram Moolenaar
glts wrote: (I posted this in vim_use a week ago but got no response. Trying again here, I would be thankful if anybody can try to reproduce this.) Hello list I am trying to use two spelling languages at the same time: :set spelllang=en_gb,de_ch :set spell Since the

Re: Update for MzScheme interface

2012-11-22 Fir de Conversatie Bram Moolenaar
Sergey Khorev wrote: Yes, autoconf has run. As I said, I don't see MZSCHEME_GENERATE_BASE defined in the configure script anywhere. I tested this on a fresh install of Ubuntu 12.10. Speaking of the error message, it specifically refers to MinGW because I wasn't able to write anything

Re: Update of tutor.ja.*

2012-11-22 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: I have updated Japanese tutor files. Some typos are fixed. Thanks, I'll include it. -- hundred-and-one symptoms of being an internet addict: 55. You ask your doctor to implant a gig in your brain. /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\

Re: Patch 7.3.715

2012-11-22 Fir de Conversatie Dominique Pellé
Ike Devolder wrote: i attach a minimum configuration + testfile where i have consistent segfaults on. within the archive you can find index.php, it has a syntax error, the following steps lead to segfault: vim index.php - :w (with the syntax error, syntastic kicks in) - goto end of

Re: Vim expr parsing bug

2012-11-22 Fir de Conversatie Christian Brabandt
Hi Bram! On Do, 22 Nov 2012, Bram Moolenaar wrote: Andy Wokula wrote: Vim Parsing Bug func! Add2(x1, x2) return a:x1 + a:x2 endfunc :echo function('Add2')(2,3) 5 (ok) Bug: :echo 1 ? function('Add2')(1,2) : function('Add2')(2,3) :echo 0 ?

Re: Patch 7.3.715

2012-11-22 Fir de Conversatie Christian Brabandt
Hi Dominique! On Do, 22 Nov 2012, Dominique Pellé wrote: quickfix.c: 2861 if (wp != NULL) 2862 qi = GET_LOC_LIST(wp); 2863 #ifdef FEAT_AUTOCMD 2864 if (au_name != NULL) 2865 { 2866 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, 2867

Re: E763: Word characters differ between spell files

2012-11-22 Fir de Conversatie glts
On Thursday, November 22, 2012 10:18:42 PM UTC+1, Bram Moolenaar wrote: Try replacing the en_gb spell file that you installed long ago with one downloaded from the server now. The files on the site have been updated some time ago to fix a mistake. I was using the vim-gnome package on Linux

Re: Patch 7.3.715

2012-11-22 Fir de Conversatie Dominique Pellé
Christian Brabandt cbli...@256bit.org wrote: Hi Dominique! On Do, 22 Nov 2012, Dominique Pellé wrote: quickfix.c: 2861 if (wp != NULL) 2862 qi = GET_LOC_LIST(wp); 2863 #ifdef FEAT_AUTOCMD 2864 if (au_name != NULL) 2865 { 2866

Re: Vim expr parsing bug

2012-11-22 Fir de Conversatie Andy Wokula
Am 22.11.2012 23:28, schrieb Christian Brabandt: Problem is, in expr1 ? expr2 : expr3 Vim explicitly resets evaluate in the false case which leads to being rettv.v_type being VAR_UNKNOWN and then handle_subscript doesn't handle the subscript anymore. Here is a patch: diff --git a/src/eval.c

Re: Can't compile latest Vim using Make_cyg.mak

2012-11-22 Fir de Conversatie Ken Takata
Hi, I think that Make_cyg.mak needs some additional include dirs for ruby 1.9. After applying the attached patch, I can compile with the following command: $ make -f Make_cyg.mak CC=gcc-3 CXX=g++-3 RUBY='/path/to/ruby1.9.3' RUBY_VER=19 RUBY_VER_LONG=1.9.1 Using i686-pc-mingw32-gcc instead of

Re: Can't compile latest Vim using Make_cyg.mak

2012-11-22 Fir de Conversatie Christian J. Robinson
On Thu, 22 Nov 2012, Ken Takata wrote: I think that Make_cyg.mak needs some additional include dirs for ruby 1.9. After applying the attached patch, I can compile with the following command: $ make -f Make_cyg.mak CC=gcc-3 CXX=g++-3 RUBY='/path/to/ruby1.9.3' RUBY_VER=19 RUBY_VER_LONG=1.9.1

[fix] small fixes for src/GvimExt/Makefile

2012-11-22 Fir de Conversatie Cade Foster
Hi. This patch fix fatal error U1052: file 'Win32.mak' not found error Thanksfor great editor! -- 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 diff -r

Re: Update for MzScheme interface

2012-11-22 Fir de Conversatie Sergey Khorev
Yes, autoconf has run. As I said, I don't see MZSCHEME_GENERATE_BASE defined in the configure script anywhere. I tested this on a fresh install of Ubuntu 12.10. Speaking of the error message, it specifically refers to MinGW because I wasn't able to write anything more or less automatic

Re: Functions with [range] do not preserve the cursor line

2012-11-22 Fir de Conversatie Nate Soares
+ docs On Thu, Nov 22, 2012 at 9:46 AM, Andy Wokula anw...@yahoo.de wrote: Am 22.11.2012 07:27, schrieb Christian Brabandt: On Thu, November 22, 2012 04:42, Nate Soares wrote: Here's a patch that adds the stay argument to the :function command. Thoughts? That is nice. ,[ :h

Re: Errors compiling with Python 3.3 on Windows

2012-11-22 Fir de Conversatie Ken Takata
Hi David, 2012/11/23 Fri 0:42:51 UTC+9 David Fishburn: Python requested (version 33) - root dir is C:\Python33 Python DLL will be loaded dynamically Perl requested (version 510) - root dir is C:\Perl Perl DLL will be loaded dynamically It seems that you set PYTHON=C:\Python33 instead of

Re: Vim expr parsing bug

2012-11-22 Fir de Conversatie Christian Brabandt
Hi Andy! On Fr, 23 Nov 2012, Andy Wokula wrote: Am 22.11.2012 23:28, schrieb Christian Brabandt: Problem is, in expr1 ? expr2 : expr3 Vim explicitly resets evaluate in the false case which leads to being rettv.v_type being VAR_UNKNOWN and then handle_subscript doesn't handle the subscript

Re: Functions with [range] do not preserve the cursor line

2012-11-22 Fir de Conversatie Christian Brabandt
Hi Andy! On Do, 22 Nov 2012, Andy Wokula wrote: E.g. you want to make a change at the cursor position and take [range] lines into account to compute the change. And you don't want :keepjumps for it. Even without use case: Sooner or later, everyone wants everything as an option. The new