Fair enough. Here is the modified patch, and a separate 'sqlite.txt' help file: ... *************** ... #endif + #define FEAT_SQLITE 1 #define DICT_MAXNEST...
Ron Aaron
rambamist@...
Dec 1, 2008 8:00 am
52607
On 01/12/08 08:39, Bill McCarthy wrote: [...] ... Not sure if it was an error, a need for clarification, or both, or neither. ":echo log(0)" answers -inf ...
Tony Mechelynck
antoine.mechelynck@...
Dec 1, 2008 8:46 am
52608
... Interesting. I've added the extra patch description similar to yours. A similar patch to version.c could be added to the floating point patch. This would...
Bill McCarthy
WJMc@...
Dec 1, 2008 1:19 pm
52609
... Well, as long as the patch applies (with line shifts but no errors) there's no urgency to unapply-reapply, I suppose. Anyway, as soon as one has more than...
Tony Mechelynck
antoine.mechelynck@...
Dec 1, 2008 1:42 pm
52610
The current autoload/netrw.vim (version 134) on ftp.vim.org has a typo in line 7569, call Netrw#ErrorMsg(s:WARNING,"delete(".path.") failed!",71) needs to be...
Karsten Hopp
karsten@...
Dec 1, 2008 1:52 pm
52611
... Sorry, that email was a draft that I thought I hadn't sent this morning. BTW, I have a fairly formal procedure for dealing with eval.c patching: ...
Bill McCarthy
WJMc@...
Dec 1, 2008 2:15 pm
52612
... Thank you for the feedback! Version v135d of netrw already had the Netrw# vs netrw# problem fixed; you can get it from ...
Charles Campbell
Charles.E.Campbell@...
Dec 1, 2008 3:11 pm
52613
... Yes, the intro screen doesn't mention any features. It would get very crowded. It only mentions the last patch included, since that's taking only a small...
Bram Moolenaar
Bram@...
Dec 1, 2008 5:13 pm
52614
... Ron, out of interest sake, what is this providing that you cannot already have by shelling out to SQLite? For example, the dbext plugin have gear in place...
David Fishburn
dfishburn.vim@...
Dec 1, 2008 6:51 pm
52615
... no way. much too complicated. I won't create a wrapper function in each case I'd like to create a funcref ... That might have been an option if I had known...
Marc Weber
marco-oweber@...
Dec 1, 2008 11:43 pm
52616
Eg why should this fail? let a = {} function! a.foo() dict echo "foo" endfunction call call(a['foo'],[]) I'm not using self anywhere. The help (E725) even...
Marc Weber
marco-oweber@...
Dec 1, 2008 11:46 pm
52617
... The workaround seems to be easy: Always pass at least {} as self parameter.. Marc --~--~---------~--~----~------------~-------~--~----~ You received this...
Marc Weber
marco-oweber@...
Dec 1, 2008 11:48 pm
52618
... Try this instead: call a.foo() --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. For more...
Larson, DavidX S
davidx.s.larson@...
Dec 1, 2008 11:59 pm
52619
... Yes, but that's not what you're doing - you're adding a function *with* the dict attribute as a funcref to a dictionary. If you want to call it without a...
Matt Wozniski
mjw@...
Dec 2, 2008 1:02 am
52620
... I build with Make_ming.mak under Windows. ... -1.#INFe ... -1.#INDe If I write this in C: #include <stdio.h> #include <stdlib.h> #include <math.h> int...
Bill McCarthy
WJMc@...
Dec 2, 2008 4:32 am
52621
... How do you get that "Modified by" to work? There doesn't appear to be anything to modify in the "make" line. -- Best regards, Bill ...
Bill McCarthy
WJMc@...
Dec 2, 2008 4:35 am
52622
I was using the command-line and shelling . However, this is much faster. ... --~--~---------~--~----~------------~-------~--~----~ You received this message...
Ron Aaron
rambamist@...
Dec 2, 2008 7:24 am
52623
... Using 3 lines of these /**/ comment markers would circumvent the problem with the limited context diff. You could just create the patch without worrying,...
Markus Heidelberg
markus.heidelberg@...
Dec 2, 2008 9:55 am
52624
... or, call call(a['foo'], [], a) Regards, Ag. --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. ...
Agathoklis D. Hatzima...
a.hatzim@...
Dec 2, 2008 1:06 pm
52625
Buffer name "[Scratch]" is currently not translated with gettext. Attached patch fixes it. "[Scratch]" is the name of the buffer that you can see by doing this...
Dominique Pelle
dominique.pelle@...
Dec 2, 2008 6:29 pm
52626
... I see this compilation warning as well. In my Perl the header file /usr/lib/perl/5.10.0/CORE/proto.h on Ubuntu-8.10, I see: PERL_CALLCONV void...
Dominique Pelle
dominique.pelle@...
Dec 2, 2008 7:34 pm
52627
... Thanks. Strange that this went unnoticed so far. -- WOMAN: I didn't know we had a king. I thought we were an autonomous collective. DENNIS: You're...
Bram Moolenaar
Bram@...
Dec 2, 2008 8:52 pm
52628
... You also need to adjust the other places where "init3" appears. Otherwise it looks like a good change to avoid the warning. Question is if it also works...
Bram Moolenaar
Bram@...
Dec 2, 2008 8:52 pm
52629
... Perl_sys_init3(...) in Vim code appears only in between... #if (PERL_REVISION == 5) && (PERL_VERSION >= 10) ... #endif And since Perl-5.10.0 is the latest...
Dominique Pelle
dominique.pelle@...
Dec 2, 2008 9:06 pm
52630
Why does ... show first second but neither throw nor echoe does break the line? It looks like this: Error detected while processing : E605: Exception not...
Marc Weber
marco-oweber@...
Dec 2, 2008 9:40 pm
52631
... It depends on your compiler, which, in turn, depends on your OS: on Unix-like systems one should use gcc with the top-level Makefile; on Windows you can...
Tony Mechelynck
antoine.mechelynck@...
Dec 3, 2008 12:16 am
52632
... Thanks for all your suggestions. I've tried all kinds of ways to add from the top - parameters to the make file like I have now. Nothing worked :-( I...
Bill McCarthy
WJMc@...
Dec 3, 2008 4:54 am
52633
Patch 7.2.061 Problem: Can't create a funcref for an autoload function without loading the script first. (Marc Weber) Solution: Accept autoload functions...
Bram Moolenaar
Bram@...
Dec 3, 2008 8:53 am
52634
Hi, I'm having problem with setting the font. In the end of this mail you can se my vim version. Using the gtk-gnome-gui and trying to set the font in my...
Fredrik Gustafsson
iveqy@...
Dec 3, 2008 9:07 am
52635
... I suppose it's unlikely that this will fail somewhere. I'll just send out a patch and keep fingers crossed :-). There are a few other warnings in...