Re: Patch 7.4.1166

2016-01-27 Fir de Conversatie Bram Moolenaar
Charles Campbell wrote: > Bram Moolenaar wrote: > > Patch 7.4.1166 > > Problem:Can't encode a Funcref into JSON. jsonencode() doesn't handle > > the > > same list or dict twice properly. (Nikolay Pavlov) > > Solution: Give an error. Reset copyID when the list or dict is

Re: Updating runtime files without version control

2016-01-27 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > > > On Sa, 23 Jan 2016, Ken Takata wrote: > > > > > > > > If Bram creates this sub-repository, I can create the daily upload > > > > > script. However I am not sure yet, how this is supposed to work. Am I > > > > > right, that in theory, we'd only need to run the

Re: [vim] glob2regpat("") returns "^$" (#602)

2016-01-27 Fir de Conversatie Tony Mechelynck
On Thu, Jan 28, 2016 at 6:25 AM, Justin M. Keyes wrote: > On Wed, Jan 27, 2016 at 11:40 PM, Tony Mechelynck > wrote: >> On Thu, Jan 28, 2016 at 4:45 AM, Justin M. Keyes >> wrote: >>> >>> glob2regpat("") returns "^$",

Re: [vim] glob2regpat("") returns "^$" (#602)

2016-01-27 Fir de Conversatie Tony Mechelynck
On Thu, Jan 28, 2016 at 4:45 AM, Justin M. Keyes wrote: > glob2regpat("") returns "^$", but that not the regex equivalent of an > empty wildcard pattern. It should probably return empty string instead. > Here's a patch: > > diff --git a/src/eval.c b/src/eval.c > index

Re: Updating runtime files without version control

2016-01-27 Fir de Conversatie Christian Brabandt
Hi Ken! On Mi, 27 Jan 2016, Ken Takata wrote: > Now I can see the vim/vim-win32-installer repository. I can see the latest > tag v7.4.1187, but the build is not started. I suppose it was because of > the GitHub server trouble. I hope that clicking "NEW BUILD" button on > appveyor goes fine.

Patch 7.4.1187

2016-01-27 Fir de Conversatie Bram Moolenaar
Patch 7.4.1187 Problem:MS-Windows channel code only supports one channel. Doesn't build without netbeans support. Solution: Get the channel index from the socket in the message. Closes #600. Files: src/channel.c, src/netbeans.c, src/gui_w48.c,

Re: Updating runtime files without version control

2016-01-27 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Sa, 23 Jan 2016, Ken Takata wrote: > > > > If Bram creates this sub-repository, I can create the daily upload > > > script. However I am not sure yet, how this is supposed to work. Am I > > > right, that in theory, we'd only need to run the upate-repo.sh script

Re: Updating runtime files without version control

2016-01-27 Fir de Conversatie Christian Brabandt
Hi Bram! On Mi, 27 Jan 2016, Bram Moolenaar wrote: > > Christian Brabandt wrote: > > > On Sa, 23 Jan 2016, Ken Takata wrote: > > > > > > If Bram creates this sub-repository, I can create the daily upload > > > > script. However I am not sure yet, how this is supposed to work. Am I > > > >

Patch 7.4.1186

2016-01-27 Fir de Conversatie Bram Moolenaar
Patch 7.4.1186 Problem:Error messages for security context are hard to translate. Solution: Use one string with %s. (Ken Takata) Files: src/os_unix.c *** ../vim-7.4.1185/src/os_unix.c 2016-01-24 20:36:18.866082348 +0100 --- src/os_unix.c 2016-01-27 20:36:59.563374795

Re: [patch] smack error messages cannot be translated

2016-01-27 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Some error messages about smack are divided into small pieces, so they > cannot be translated to other languages like Japanese which syntax is > different from English. > The following patch fixes the problem: > > --- a/src/os_unix.c > +++ b/src/os_unix.c > @@ -2848,11

Re: Patch 7.4.1166

2016-01-27 Fir de Conversatie Charles Campbell
Bram Moolenaar wrote: > Patch 7.4.1166 > Problem:Can't encode a Funcref into JSON. jsonencode() doesn't handle the > same list or dict twice properly. (Nikolay Pavlov) > Solution: Give an error. Reset copyID when the list or dict is finished. > Files: src/json.c,

Re: [patch] add watch function to vim debugger

2016-01-27 Fir de Conversatie Christian Brabandt
Okay, I have updated the patch. It was harder than expected, since several of the last patches change something, this patch also touches. (debugger enhancement, type comparisons, __ARGS removal). Changes include: * fix rejects caused by previous patches * fix an error, that would cause to not

Re: Updating runtime files without version control

2016-01-27 Fir de Conversatie Ken Takata
Hi Christian, 2016/1/28 Thu 5:32:52 UTC+9 Christian Brabandt wrote: > Hi Bram! > > On Mi, 27 Jan 2016, Bram Moolenaar wrote: > > > > > Christian Brabandt wrote: > > > > > On Sa, 23 Jan 2016, Ken Takata wrote: > > > > > > > > If Bram creates this sub-repository, I can create the daily upload

Re: [vim] glob2regpat("") returns "^$" (#602)

2016-01-27 Fir de Conversatie Justin M. Keyes
On Wed, Jan 27, 2016 at 11:40 PM, Tony Mechelynck wrote: > On Thu, Jan 28, 2016 at 4:45 AM, Justin M. Keyes > wrote: >> >> glob2regpat("") returns "^$", but that not the regex equivalent of an >> empty wildcard pattern. It should probably

Re: Updating runtime files without version control

2016-01-27 Fir de Conversatie Christian Brabandt
Hi Ken! On Sa, 23 Jan 2016, Ken Takata wrote: > > If Bram creates this sub-repository, I can create the daily upload > > script. However I am not sure yet, how this is supposed to work. Am I > > right, that in theory, we'd only need to run the upate-repo.sh script > > once per day? > > Yes,

[patch] smack error messages cannot be translated

2016-01-27 Fir de Conversatie Ken Takata
Hi, Some error messages about smack are divided into small pieces, so they cannot be translated to other languages like Japanese which syntax is different from English. The following patch fixes the problem: --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2848,11 +2848,10 @@ mch_copy_sec(from_file,

Re: Patch 7.4.1184

2016-01-27 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Di, 26 Jan 2016, Bram Moolenaar wrote: > > > Patch 7.4.1184 (after 7.4.1182) > > Problem:MS-Windows build is still broken. > > Solution: Change nbsock to ch_fd. > > Files: src/channel.c > > I was trying to set up the vim-win32-installer repository as

Patch 7.4.1185

2016-01-27 Fir de Conversatie Bram Moolenaar
Patch 7.4.1185 Problem:Can't build with TCL on some systems. Solution: Rename the channel_ functions. Files: src/if_tcl.c *** ../vim-7.4.1184/src/if_tcl.c2016-01-10 16:12:20.901849807 +0100 --- src/if_tcl.c2016-01-27 10:54:41.332917837 +0100 *** ***

Re: [vim] Use shiftwidth() instead of in indent/vim.vim (#578)

2016-01-27 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2016-01-26 22:10 GMT+03:00 Bram Moolenaar : > > Takuya Fujiwara wrote: > > > > However, for some file formats there is a recommended or even > > > enforced indent policy. > > > > I agree. > > I want to know the reason why some plugins set `shiftwidth` or > >