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

2012-11-23 Fir de Conversatie Ken Takata
Hi Christian, 2012/11/23 Fri 11:50:49 UTC+9 Heptite: > And yet I still get the undefined reference to _pow error, regardless > of which version of gcc I use. Hmm, strange. The symbol _pow is usually defined in a library libmsvcrt.a which is linked by default. Can you compile a program just usin

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

2012-11-23 Fir de Conversatie Ken Takata
Hi Bram, Ken Takata wrote: > Bram Moolenaar wrote: > > Looking at Make_mvc.mak, the extra directories are only used when the > > Ruby version is 1.9 or later. Not for 1.8. > > Oh, I didn't notice that. > How about this patch? And I think this is the same for Make_ming.mak. Thanks, Ken Takata

Re: Update for MzScheme interface

2012-11-23 Fir de Conversatie Sergey Khorev
> No, the directory is /share/collects. Configure doesn't find it. I > have changed configure.in and now it seems to work. I'll do some more > checks and send out the patch. Thanks. Your variant worked for me as well. -- You received this message from the "vim_dev" maillist. Do not top-post!

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

2012-11-23 Fir de Conversatie Ken Takata
Hi Bram, Bram Moolenaar wrote: > Looking at Make_mvc.mak, the extra directories are only used when the > Ruby version is 1.9 or later. Not for 1.8. Oh, I didn't notice that. How about this patch? Thanks, Ken Takata -- You received this message from the "vim_dev" maillist. Do not top-post! Typ

compile error by updating from 7.3.718 to 7.3.728

2012-11-23 Fir de Conversatie Cesar Romani
I'm building vim on windows 7 with mingw. By updating it from 7.3.718 to 7.3.728 I got: [...] if_ruby.c:339:21: error: static declaration of 'rb_num2long_stub' follows non-static declaration c:/ruby193/include/ruby-1.9.1/ruby/ruby.h:502:14: note: previous declaration of 'rb

Re: Patch 7.3.715

2012-11-23 Fir de Conversatie Ike Devolder
Op vrijdag 23 november 2012 21:47:47 schreef Christian Brabandt: > Hi Bram! > > On Fr, 23 Nov 2012, Bram Moolenaar wrote: > > Christian Brabandt wrote: > > > Hi Dominique! > > > > > > On Do, 22 Nov 2012, Dominique Pellé wrote: > > > > I can't tell whether that's the right fix, but I confirm that

Re: Vim expr parsing bug

2012-11-23 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Fr, 23 Nov 2012, Bram Moolenaar wrote: > > > Christian Brabandt wrote: > > > > > On Do, 22 Nov 2012, Bram Moolenaar wrote: > > > > > > > > > > > Andy Wokula wrote: > > > > > > > > > " Vim Parsing Bug > > > > > > > > > > func! Add2(x1, x2) > > > > > return

Patch 7.3.728

2012-11-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.728 Problem:Cannot compile with MzScheme interface on Ubuntu 12.10. Solution: Find the collects directory under /usr/share. Files: src/configure.in, src/auto/configure *** ../vim-7.3.727/src/configure.in 2012-10-03 21:09:33.0 +0200 --- src/configure.in2012-11

Patch 7.3.727

2012-11-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.727 Problem:Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster) Files: src/GvimExt/Makefile *** ../vim-7.3.726/src/GvimExt/Makefile 2010-08-15 21:57:29.0 +0200 --- src/GvimExt/Makefile2012-11-21 19

Re: Patch 7.3.715

2012-11-23 Fir de Conversatie Christian Brabandt
Hi Bram! On Fr, 23 Nov 2012, Bram Moolenaar wrote: > > Christian Brabandt wrote: > > > Hi Dominique! > > > > On Do, 22 Nov 2012, Dominique Pellé wrote: > > > > > I can't tell whether that's the right fix, but I confirm that > > > your proposed change avoids the crash at least. > > > > > > wp

Patch 7.3.726

2012-11-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.726 Problem:Typos and duplicate info in README. Solution: Fix the text. Files: README.txt *** ../vim-7.3.725/README.txt 2012-11-20 17:18:56.0 +0100 --- README.txt 2012-11-21 12:28:58.0 +0100 *** *** 97,111 If you have problems, have a lo

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

2012-11-23 Fir de Conversatie Bram Moolenaar
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 > > Using i68

Re: Patch 7.3.715

2012-11-23 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > Hi Dominique! > > On Do, 22 Nov 2012, Dominique Pellé wrote: > > > I can't tell whether that's the right fix, but I confirm that > > your proposed change avoids the crash at least. > > > > wp->w_llist was set to NULL at line quickfix.c:914 which > > was introduced b

Re: Vim expr parsing bug

2012-11-23 Fir de Conversatie Christian Brabandt
Hi Bram! On Fr, 23 Nov 2012, Bram Moolenaar wrote: > > Christian Brabandt wrote: > > > On Do, 22 Nov 2012, Bram Moolenaar wrote: > > > > > > > > Andy Wokula wrote: > > > > > > > " Vim Parsing Bug > > > > > > > > func! Add2(x1, x2) > > > > return a:x1 + a:x2 > > > > endfunc > > > > > >

Re: Errors compiling with Python 3.3 on Windows

2012-11-23 Fir de Conversatie David Fishburn
On Fri, Nov 23, 2012 at 1:46 AM, Ken Takata wrote: > 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 loa

Re: Vim expr parsing bug

2012-11-23 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > 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 ?

How to copy text from Xmig to windows

2012-11-23 Fir de Conversatie Ravindra yadav
I am not able copy anything from Xming to windows , i tried lots of things but still not able to do so, Can anyone help me . -- 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.v

Re: Update for MzScheme interface

2012-11-23 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

"- register

2012-11-23 Fir de Conversatie Marcin Szamotulski
Dear vim_dev, I have found a strange behaviour of "- register, with the following setting: set clipboard=unnamed,autoselect,exclude:cons\|linux (unnamed added at the beginning) Let say that I have a file with: foo, bar Let us try to interchange foo with bar. Use 'de' to delete the 'foo', whi

Re: Patch 7.3.715

2012-11-23 Fir de Conversatie Christian Brabandt
Hi Dominique! On Do, 22 Nov 2012, Dominique Pellé wrote: > I can't tell whether that's the right fix, but I confirm that > your proposed change avoids the crash at least. > > wp->w_llist was set to NULL at line quickfix.c:914 which > was introduced by chane 3918 according to hg annotate: > > 9