Re: [PATCH] Minor doc fix: deepcopy() in the list of builtin functions

2014-02-11 Thread Bram Moolenaar
lcd wrote: > The prototype of deepcopy() mentioned in the list of builtin > functions is missing the optional parameter. Thanks! -- When danger reared its ugly head, He bravely turned his tail and fled Yes, Brave Sir Robin turned about And gallantly he chickened

[patch] Pressing the 'pastetoggle' key doesn't update the statusline

2014-02-11 Thread Nobuhiro Takasaki
This is a problem that was posted on the Issue of Japanese. I will solve one of the TODO. https://gist.github.com/ntak/8930287 I enjoy to read the code :) Thanks. Nobuhiro Takasaki -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below th

Patch 7.4.170

2014-02-11 Thread Bram Moolenaar
Patch 7.4.170 Problem:Some help tags don't work with ":help". (Tim Chase) Solution: Add exceptions. Files: src/ex_cmds.c *** ../vim-7.4.169/src/ex_cmds.c2013-11-09 03:31:45.0 +0100 --- src/ex_cmds.c 2014-02-11 12:10:43.905946437 +0100 *** *** 5936,594

Re: [patch] Pressing the 'pastetoggle' key doesn't update the statusline

2014-02-11 Thread Bram Moolenaar
Nobuhiro Takasaki wrote: > This is a problem that was posted on the Issue of Japanese. I will > solve one of the TODO. > > https://gist.github.com/ntak/8930287 > > I enjoy to read the code :) Is it this TODO item: When 'paste' is changed with 'pastetoggle', the ruler doesn't reflect this righ

Patch 7.4.171

2014-02-11 Thread Bram Moolenaar
Patch 7.4.171 Problem:Redo does not set v:count and v:count1. Solution: Use a separate buffer for redo, so that we can set the counts when performing redo. Files: src/getchar.c, src/globals.h, src/normal.c, src/proto/getchar.pro, src/structs.h *** ../vim-7.4.17

Patch 7.4.172

2014-02-11 Thread Bram Moolenaar
Patch 7.4.172 Problem:The blowfish code mentions output feedback, but the code is actually doing cipher feedback. Solution: Adjust names and comments. Files: src/blowfish.c, src/fileio.c, src/proto/blowfish.pro, src/memline.c *** ../vim-7.4.171/src/blowfish.c

Re: Patch 7.4.171

2014-02-11 Thread Christ van Willegen
On Tue, Feb 11, 2014 at 3:10 PM, Bram Moolenaar wrote: > > Patch 7.4.171 > Problem:Redo does not set v:count and v:count1. > Solution: Use a separate buffer for redo, so that we can set the counts when > performing redo. Slight typo in a comment in the patch : ! * Prepare the

Patch 7.4.173

2014-02-11 Thread Bram Moolenaar
Patch 7.4.173 Problem:When using scrollbind the cursor can end up below the last line. (mvxxc) Solution: Reset w_botfill when scrolling up. (Christian Brabandt) Files: src/move.c *** ../vim-7.4.172/src/move.c 2012-11-28 18:15:42.0 +0100 --- src/move.c 2014-02-11

[patch] UTF-8: mapping a multi-byte key where the second byte is 0x80 doesn't appear

2014-02-11 Thread Nobuhiro Takasaki
It is a thing that this also solved the Issues of Japanese. I will read through the TODO after this. I fun. https://gist.github.com/ntak/8936239 Thanks. Nobuhiro Takasaki -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you

Patch 7.4.174

2014-02-11 Thread Bram Moolenaar
Patch 7.4.174 Problem:Compiler warnings for Python interface. (Tony Mechelynck) Solution: Add type casts, initialize variable. Files: src/if_py_both.h *** ../vim-7.4.173/src/if_py_both.h 2014-01-31 14:53:59.715533645 +0100 --- src/if_py_both.h2014-02-11 15:57:30.678154932 +010

Re: Patch 7.4.171

2014-02-11 Thread Bram Moolenaar
Christ van Willegen wrote: > On Tue, Feb 11, 2014 at 3:10 PM, Bram Moolenaar wrote: > > > > Patch 7.4.171 > > Problem:Redo does not set v:count and v:count1. > > Solution: Use a separate buffer for redo, so that we can set the counts > > when > > performing redo. > > Slight t

Patch 7.4.175

2014-02-11 Thread Bram Moolenaar
Patch 7.4.175 Problem:When a wide library function fails, falling back to the non-wide function may do the wrong thing. Solution: Check the platform, when the wide function is supported don't fall back to the non-wide function. (Ken Takata) Files: src/os_mswin.c,

Re: Patch 7.4.174

2014-02-11 Thread Tony Mechelynck
On 11/02/14 16:00, Bram Moolenaar wrote: Patch 7.4.174 Problem:Compiler warnings for Python interface. (Tony Mechelynck) Solution: Add type casts, initialize variable. Files: src/if_py_both.h In incremental build for patches 173-175 I get the following: - In tiny build but not in h

Re: Some direct questions about vim source code

2014-02-11 Thread Elias Diem
Hi there On 2014-02-07, Christian Brabandt wrote: > mch_ are system dependent functions I always think of it as "machine". -- Greetings Elias -- -- 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 informa

Re: [patch] UTF-8: mapping a multi-byte key where the second byte is 0x80 doesn't appear

2014-02-11 Thread Bram Moolenaar
Nobuhiro Takasaki wrote: > It is a thing that this also solved the Issues of Japanese. > > I will read through the TODO after this. I fun. > > https://gist.github.com/ntak/8936239 I would prefer the patch in the email message, so that I don't need to navigate to a web page to see what it's abo

[doc] minor fix in motion.txt

2014-02-11 Thread Ken Takata
Hi, I think "{count}" should be "[count]". --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -343,7 +343,7 @@ See also 'startofline' option. {not in Vi} :[range]go[to] [count] *:go* *:goto* *go* -[count]go Go to {

Re: [doc] minor fix in motion.txt

2014-02-11 Thread Bram Moolenaar
Ken Takata wrote: > I think "{count}" should be "[count]". > > --- a/runtime/doc/motion.txt > +++ b/runtime/doc/motion.txt > @@ -343,7 +343,7 @@ > See also 'startofline' option. {not in Vi} > > :[range]go[to] [count] *:go* *:goto*

Re: new syntax file(systemverilog)

2014-02-11 Thread Bram Moolenaar
Kocha wrote: > I am always using a language called SystemVerilog at work. > However, I very regret that there is nothing to Syntax of the standard of Vim. > Would you add to the standard of Vim, if it can do? > > This is my first post and my first time creating vim syntax files, so > please fee

Re: Patch 7.4.174

2014-02-11 Thread Bram Moolenaar
Tony Mechelynck wrote: > On 11/02/14 16:00, Bram Moolenaar wrote: > > > > Patch 7.4.174 > > Problem:Compiler warnings for Python interface. (Tony Mechelynck) > > Solution: Add type casts, initialize variable. > > Files: src/if_py_both.h > > In incremental build for patches 173-175

Patch 7.4.176

2014-02-11 Thread Bram Moolenaar
Patch 7.4.176 Problem:Dictionary.update() thows an error when used without arguments. Python programmers don't expect that. Solution: Make Dictionary.update() without arguments do nothing. (ZyX) Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test87.in *** ../v

Patch 7.4.177

2014-02-11 Thread Bram Moolenaar
Patch 7.4.177 Problem:Compiler warning for unused variable. (Tony Mechelynck) Solution: Add #ifdef. Files: src/move.c *** ../vim-7.4.176/src/move.c 2014-02-11 15:47:41.382145902 +0100 --- src/move.c 2014-02-11 18:13:57.378280376 +0100 *** *** 2101,2107 --- 2101,210

Patch 7.4.178

2014-02-11 Thread Bram Moolenaar
Patch 7.4.178 Problem:The J command does not update '[ and '] marks. (William Gardner) Solution: Set the marks. (Christian Brabandt) Files: src/ops.c *** ../vim-7.4.177/src/ops.c2014-01-14 12:33:32.0 +0100 --- src/ops.c 2014-02-11 19:22:46.538343647 +0100 ***

Re: Patch 7.4.174

2014-02-11 Thread ZyX
PyErr_Format("%ld") is supported since python 2.5. Officially we support python 2.4 and older. Thus you should either drop support for python 2.4 or cast to (int). I was using the latter, though I cannot recall whether I just forgot to add type casts when transforming %ld I wanted to use initial

Re: Patch 7.4.174

2014-02-11 Thread ZyX
On Tuesday, February 11, 2014 11:54:46 PM UTC+4, ZyX wrote: > PyErr_Format("%ld") is supported since python 2.5. Officially we support > python 2.4 and older. Thus you should either drop support for python 2.4 or > cast to (int). I was using the latter, though I cannot recall whether I just > fo

Re: new syntax file(systemverilog)

2014-02-11 Thread kocha
Thank you for the comments. It checked even in my way and was satisfactory. 2014年2月12日水曜日 2時42分46秒 UTC+9 Bram Moolenaar: > Kocha wrote: > > > > > I am always using a language called SystemVerilog at work. > > > However, I very regret that there is nothing to Syntax of the standard of > > Vi

Re: new syntax file(systemverilog)

2014-02-11 Thread kocha
Sorry to trouble you, please add *.svh file is systemverilog. -- -- 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.vim.org/maillist.php --- You received this message because you

Re: Patch 7.4.174

2014-02-11 Thread Bram Moolenaar
ZyX wrote: > On Tuesday, February 11, 2014 11:54:46 PM UTC+4, ZyX wrote: > > PyErr_Format("%ld") is supported since python 2.5. Officially we support > > python 2.4 and older. Thus you should either drop support for python 2.4 or > > cast to (int). I was using the latter, though I cannot recall

Re: Patch 7.4.174

2014-02-11 Thread Tony Mechelynck
On 11/02/14 20:54, ZyX wrote: PyErr_Format("%ld") is supported since python 2.5. Officially we support python 2.4 and older. Thus you should either drop support for python 2.4 or cast to (int). I was using the latter, though I cannot recall whether I just forgot to add type casts when transfor

Re: Patch 7.4.174

2014-02-11 Thread Tony Mechelynck
On 11/02/14 18:42, Bram Moolenaar wrote: Tony Mechelynck wrote: On 11/02/14 16:00, Bram Moolenaar wrote: Patch 7.4.174 Problem:Compiler warnings for Python interface. (Tony Mechelynck) Solution: Add type casts, initialize variable. Files: src/if_py_both.h In incremental build fo

7.4.175 email missing?

2014-02-11 Thread Tony Mechelynck
For some reason I didn't get the email about patch 7.4.175, and it is not in my Gmail spam folder either. Not a big deal since the corresponding Mercurial changeset was downloaded in time, so I can produce an equivalent patch with the help of hg diff (attached). Note that the changeset in the

Re: 7.4.175 email missing?

2014-02-11 Thread Christian J. Robinson
On Wed, 12 Feb 2014, Tony Mechelynck wrote: For some reason I didn't get the email about patch 7.4.175, and it is not in my Gmail spam folder either. I have a copy of it in my inbox, and a copy can be found in the mailing list archive: https://groups.google.com/d/topic/vim_dev/6HbdUqzV1j4/di

Re: 7.4.175 email missing?

2014-02-11 Thread Tony Mechelynck
On 12/02/14 02:55, Christian J. Robinson wrote: On Wed, 12 Feb 2014, Tony Mechelynck wrote: For some reason I didn't get the email about patch 7.4.175, and it is not in my Gmail spam folder either. I have a copy of it in my inbox, and a copy can be found in the mailing list archive: https://g

Re: [patch] UTF-8: mapping a multi-byte key where the second byte is 0x80 doesn't appear

2014-02-11 Thread Nobuhiro Takasaki
The patch, I should have been in the attached file. I have to use the two pointers. I do not have the ability to write this test. I study, but amateur. I can see maybe grammar, thinking how to do well. Anyway, I've got a patch that fixes my mistakes. Does not seem to be an easy road in life. -

Re: [patch] Pressing the 'pastetoggle' key doesn't update the statusline

2014-02-11 Thread Ken Takata
Hi, 2014/2/11 Tue 22:27:40 UTC+9 Bram Moolenaar wrote: > Is it this TODO item: > > When 'paste' is changed with 'pastetoggle', the ruler doesn't reflect this > right away. (Samuel Ferencik, 2010 Dec 7) Maybe, the following TODO item is also related: Pressing the 'pastetoggle' key doesn't updat