Re: gvim, Windows NAS share of a unix file system, hard links

2007-02-24 Thread A.J.Mechelynck
Nathan Coulter wrote: bug report == version: VIM - Vi IMproved 7.0 (2006 May 7, compiled May 7 2006 16:23:43) MS-Windows 32 bit GUI version with OLE support problem: Writing to a file on a windows share where the underlying filesystem supports hard links, modifying a

Bug? in vimgrep with g flag and long lines.

2007-02-24 Thread A.J.Mechelynck
When cycling through matches using ":cnext", if there are several matches in a single long line, the line is only shortened the first time (but _not_ the 2nd, 3rd, etc.,) to avoid a Hit-Enter prompt. Reproducible: every time. Steps to reproduce: 1. :set wrap " I'm not sure this is necessary 2.

gvim, Windows NAS share of a unix file system, hard links

2007-02-24 Thread Nathan Coulter
bug report == version: VIM - Vi IMproved 7.0 (2006 May 7, compiled May 7 2006 16:23:43) MS-Windows 32 bit GUI version with OLE support problem: Writing to a file on a windows share where the underlying filesystem supports hard links, modifying a file us

RE: Win64-related patches

2007-02-24 Thread Michael Wookey
> Hi Bram, > > > Michael Wookey wrote: > > > > > > One bug that I didn't fix. Build gvim.exe with OLE=no, run 'gvim > - > > register', > > > > and watch it crash while trying to display an error message. > > > > > > This seems to fix the bug... > > > > > > Index: src/message.c > > > ==

RE: Win64-related patches

2007-02-24 Thread Michael Wookey
Hi Bram, > Michael Wookey wrote: > > > > One bug that I didn't fix. Build gvim.exe with OLE=no, run 'gvim - > register', > > > and watch it crash while trying to display an error message. > > > > This seems to fix the bug... > > > > Index: src/message.c > > ===

Re: Regular expression warning E54 when saving arbitrary files (backslash-issue) including FIX

2007-02-24 Thread A.J.Mechelynck
Basti Grembowietz wrote: [...] As I am new to vim-dev, who usually submits this to the repository? Can anyone make a cvs/svn/whateveryouuse-account? Cheers, Basti PS: vim rocks. IIUC, checkins to the official sources repository are done by Bram Moolenaar himself after he has seen and approv

Regular expression warning E54 when saving arbitrary files (backslash-issue) including FIX

2007-02-24 Thread Basti Grembowietz
Hi vim-developers! I have a small bug-report with including fix. WHAT: On my home PC the saving of a file always raised two E54 warnings. Yesterday this was annoying to much (having to press some key before working on normally, so I investigated a bit. And fixed it =) Open source is nice.

Re: crash due to -fstack-protector false positive

2007-02-24 Thread Yakov Lerner
On 2/24/07, Bram Moolenaar <[EMAIL PROTECTED]> wrote: > -char_u di_key[1]; /* key (actually longer!) */ > +char_u di_key[]; /* key (actually longer!) */ I think this is c99 vs c89 difference. C99 allows x[] as last member of the struct, but c89 does not. As Bram mentioned