8b9a1c
To: vim_dev@googlegroups.com
8b9a1c
Subject: Patch 7.4.121
8b9a1c
Fcc: outbox
8b9a1c
From: Bram Moolenaar <Bram@moolenaar.net>
8b9a1c
Mime-Version: 1.0
8b9a1c
Content-Type: text/plain; charset=UTF-8
8b9a1c
Content-Transfer-Encoding: 8bit
8b9a1c
------------
8b9a1c
8b9a1c
Patch 7.4.121
8b9a1c
Problem:    Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw)
8b9a1c
Solution:   Skip over letters after ":py3".
8b9a1c
Files:	    src/ex_docmd.c
8b9a1c
8b9a1c
8b9a1c
*** ../vim-7.4.120/src/ex_docmd.c	2013-11-21 14:21:25.000000000 +0100
8b9a1c
--- src/ex_docmd.c	2013-12-11 17:41:50.000000000 +0100
8b9a1c
***************
8b9a1c
*** 3261,3267 ****
8b9a1c
--- 3261,3271 ----
8b9a1c
  	    ++p;
8b9a1c
  	/* for python 3.x: ":py3*" commands completion */
8b9a1c
  	if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
8b9a1c
+ 	{
8b9a1c
  	    ++p;
8b9a1c
+ 	    while (ASCII_ISALPHA(*p) || *p == '*')
8b9a1c
+ 		++p;
8b9a1c
+ 	}
8b9a1c
  	len = (int)(p - cmd);
8b9a1c
  
8b9a1c
  	if (len == 0)
8b9a1c
*** ../vim-7.4.120/src/version.c	2013-12-11 17:20:14.000000000 +0100
8b9a1c
--- src/version.c	2013-12-11 17:43:44.000000000 +0100
8b9a1c
***************
8b9a1c
*** 740,741 ****
8b9a1c
--- 740,743 ----
8b9a1c
  {   /* Add new patch number below this line */
8b9a1c
+ /**/
8b9a1c
+     121,
8b9a1c
  /**/
8b9a1c
8b9a1c
-- 
8b9a1c
It was recently discovered that research causes cancer in rats.
8b9a1c
8b9a1c
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
8b9a1c
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
8b9a1c
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
8b9a1c
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///