mirror of
https://github.com/vim/vim.git
synced 2025-10-05 05:34:07 -04:00
updated for version 7.3.601
Problem: Bad code style. Solution: Insert space, remove parens.
This commit is contained in:
@@ -1813,7 +1813,7 @@ conv_to_pvim()
|
||||
ptr[i] = toF_leading(ptr[i]);
|
||||
++i;
|
||||
|
||||
while(canF_Rjoin(ptr[i]) && (i < llen))
|
||||
while (canF_Rjoin(ptr[i]) && i < llen)
|
||||
{
|
||||
ptr[i] = toF_Rjoin(ptr[i]);
|
||||
if (F_isterm(ptr[i]) || !F_isalpha(ptr[i]))
|
||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
601,
|
||||
/**/
|
||||
600,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user