Re: Patch 7.4.016

2013-08-30 Thread Ken Takata
Hi Bram, 2013/08/31 Sat 0:29:32 UTC+9 Bram Moolenaar wrote: > Patch 7.4.016 > Problem:MS-Windows: File name completion doesn't work properly with > Chinese characters. (Yue Wu) > Solution: Add fname_casew(). (Ken Takata) > Files:src/os_win32.c This patch (7.4.016) is n

Re: Patch 7.4.013

2013-08-30 Thread Ken Takata
Hi Tony, 2013/08/31 Sat 12:33:38 UTC+9 Tony Mechelynck wrote: > Note: Unicode codepoints above U+ require 4 bytes each in UTF-8. Up > to U+10 they can be represented in UTF-16 by means of a surrogate > pair (two 16-bit words). I don't know how frequent those "high" > codepoints are in p

Re: Patch 7.4.013

2013-08-30 Thread Tony Mechelynck
On 30/08/13 16:51, Bram Moolenaar wrote: Patch 7.4.013 Problem:File name buffer too small for utf-8. Solution: Use character count instead of byte count. (Ken Takata) Files: src/os_mswin.c *** ../vim-7.4.012/src/os_mswin.c 2013-08-30 16:44:15.0 +0200 --- src/os_mswin.c

Re: Patch 7.4.011

2013-08-30 Thread Tony Mechelynck
On 30/08/13 16:36, Bram Moolenaar wrote: Patch 7.4.011 Problem:Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata) Files: src/eval.c, src/version.c These features are now listed in the :version listing, but t

Patch 7.4.013

2013-08-30 Thread Bram Moolenaar
Patch 7.4.013 Problem:File name buffer too small for utf-8. Solution: Use character count instead of byte count. (Ken Takata) Files: src/os_mswin.c *** ../vim-7.4.012/src/os_mswin.c 2013-08-30 16:44:15.0 +0200 --- src/os_mswin.c 2013-08-30 16:47:54.0 +0200 *

[TRANSLATION BUG] (ru) Bug in E742 error message

2013-08-30 Thread ZyX
If you do `call extend(v:, {})` you will see E742 message that spells like this: E742: Невозможно изменить значение параметр extend() , while it should spell like this: E742: Невозможно изменить значение параметра extend() (note the last-but-one word). The "extend() argument" string tha

Re: Issue 164 in vim: Freeze on trying to match /\s\+\%#\@

2013-08-30 Thread vim
Comment #2 on issue 164 by harig...@gmail.com: Freeze on trying to match /\s\+\%#\@ http://code.google.com/p/vim/issues/detail?id=164 Adding a file with the text. For me opening it and searching for the pattern /\s\+\%#\@ Attachments: re.freeze.txt 94.1 KB -- You received this mes

Re: [BUG] Bus error with invalid arguments to expand

2013-08-30 Thread LCD 47
On 30 August 2013, Charles Cooper wrote: > Hello. > > > > > >> :call expand('a', 'p', 0700) > > > > (gdb) set args -u NONE -U NONE +'call mkdir(expand("abc", "p", 0700))' > > The example reads --> call mkdir(expand("abc", "p", 0700)) > but should it be --> call mkdir(expand("abc"), "p", 0700

Re: [BUG] Bus error with invalid arguments to expand

2013-08-30 Thread Charles Cooper
Hello. > > > >> :call expand('a', 'p', 0700) > > > (gdb) set args -u NONE -U NONE +'call mkdir(expand("abc", "p", 0700))' The example reads --> call mkdir(expand("abc", "p", 0700)) but should it be --> call mkdir(expand("abc"), "p", 0700) expand("abc","p", 0700) is not a correct use of expan

Patch 7.4.012

2013-08-30 Thread Bram Moolenaar
Patch 7.4.012 Problem:MS-Windows: resolving shortcut does not work properly with multi-byte characters. Solution: Use wide system functions. (Ken Takata) Files: src/os_mswin.c *** ../vim-7.4.011/src/os_mswin.c 2013-06-16 16:41:11.0 +0200 --- src/os_mswin.c

Patch 7.4.016

2013-08-30 Thread Bram Moolenaar
Patch 7.4.016 Problem:MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Add fname_casew(). (Ken Takata) Files: src/os_win32.c *** ../vim-7.4.015/src/os_win32.c 2013-08-30 17:11:29.0 +0200 --- src/os_win32.c

Re: [BUG] Bus error with invalid arguments to expand

2013-08-30 Thread Manpreet Singh
Thanks all for the investigation and the fix (patch 7.4.010) ! - Manpreet On 8/30/13 6:30 AM, Bram Moolenaar wrote: lcd47 wrote: On 27 August 2013, Manpreet Singh wrote: On 8/27/13 1:04 PM, Dominique Pellé wrote: Manpreet Singh wrote: (Please excuse any duplicate posts. Posting via new

Patch 7.4.015

2013-08-30 Thread Bram Moolenaar
Patch 7.4.015 Problem:MS-Windows: Detecting node type does not work for multi-byte characters. Solution: Use wide character function when needed. (Ken Takata) Files: src/os_win32.c *** ../vim-7.4.014/src/os_win32.c 2013-08-10 12:39:12.0 +0200 --- src/os_win32

Patch 7.4.014

2013-08-30 Thread Bram Moolenaar
Patch 7.4.014 Problem:MS-Windows: check for writing to device does not work. Solution: Fix #ifdefs. (Ken Takata) Files: src/fileio.c *** ../vim-7.4.013/src/fileio.c 2013-08-25 17:46:05.0 +0200 --- src/fileio.c2013-08-30 16:56:46.0 +0200 *** *** 428,

Patch 7.4.011

2013-08-30 Thread Bram Moolenaar
Patch 7.4.011 Problem:Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata) Files: src/eval.c, src/version.c *** ../vim-7.4.010/src/eval.c 2013-08-30 16:00:04.0 +0200 --- src/eval.c 2013-08-30 16:34:12

Patch 7.4.010

2013-08-30 Thread Bram Moolenaar
Patch 7.4.010 (after 7.4.006) Problem:Crash with invalid argument to mkdir(). Solution: Check for empty string. (lcd47) Files: src/eval.c *** ../vim-7.4.009/src/eval.c 2013-08-22 12:06:50.0 +0200 --- src/eval.c 2013-08-30 15:47:47.0 +0200 *** *** 14292,1

Re: Typo in comment in spell.c

2013-08-30 Thread Bram Moolenaar
Glts wrote: > I believe this is a typo in spell.c: Right, thanks. -- hundred-and-one symptoms of being an internet addict: 139. You down your lunch in five minutes, at your desk, so you can spend the rest of the hour surfing the Net. /// Bram Moolenaar -- b...@moolenaar.net -- http://w

Re: [BUG] Bus error with invalid arguments to expand

2013-08-30 Thread Bram Moolenaar
lcd47 wrote: > On 27 August 2013, Manpreet Singh wrote: > > On 8/27/13 1:04 PM, Dominique Pellé wrote: > > >Manpreet Singh wrote: > > > > > >>(Please excuse any duplicate posts. Posting via news.gmane.org seems to > > >>have bounced) > > >> > > >>Platform: Mac OS X 10.8.4 64-bit (latest releas

Re: Typo in comment in spell.c

2013-08-30 Thread Bram Moolenaar
Dominique wrote: > glts <676c7...@gmail.com> wrote: > > > I believe this is a typo in spell.c: > > > > diff -r 2ee5e568766c src/spell.c > > --- a/src/spell.cThu Aug 22 14:14:27 2013 +0200 > > +++ b/src/spell.cSat Aug 24 17:08:07 2013 +0200 > > @@ -10135,7 +10135,7 @@ > > } > > > > /* >

Re: New regexp engine problem with combining characters

2013-08-30 Thread Bram Moolenaar
glts wrote: > The new regexp engine seems unable to deal with combining characters. > This is on Vim 7.4.9. Steps to reproduce: > > :put =\"ca\u0300t\" > :echo getline('.') =~ '\%#=0a' > :echo getline('.') =~ '\%#=1a' > > Only the old regexp engine finds the match. I ca

Re: [BUG] New regexp engine bug: capturing group with @> voids all preceding capturing groups contents

2013-08-30 Thread Bram Moolenaar
ZyX wrote: > Try the following code: > > > echo matchlist('abc', '\%#=1\v(\_.{-})\C(%(\V\\\v)*)@>(\V%\v|%$)') > echo matchlist('abc', '\%#=2\v(\_.{-})\C(%(\V\\\v)*)@>(\V%\v|%$)') > > . You will see that output differs: first version (with old engine) contains > “abc” in first capturin

Re: Issue 164 in vim: Freeze on trying to match /\s\+\%#\@

2013-08-30 Thread vim
Comment #1 on issue 164 by brammool...@gmail.com: Freeze on trying to match /\s\+\%#\@ http://code.google.com/p/vim/issues/detail?id=164 I cannot reproduce the problem. Perhaps you need to be more specific about the text? -- You received this message because this project is configured to send