Skip to content

Commit

Permalink
updated for version 7.3.601
Browse files Browse the repository at this point in the history
Problem:    Bad code style.
Solution:   Insert space, remove parens.
  • Loading branch information
brammool committed Jul 16, 2012
1 parent 8cbbb57 commit 81fa199
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/farsi.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1813,7 +1813,7 @@ conv_to_pvim()
ptr[i] = toF_leading(ptr[i]); ptr[i] = toF_leading(ptr[i]);
++i; ++i;


while(canF_Rjoin(ptr[i]) && (i < llen)) while (canF_Rjoin(ptr[i]) && i < llen)
{ {
ptr[i] = toF_Rjoin(ptr[i]); ptr[i] = toF_Rjoin(ptr[i]);
if (F_isterm(ptr[i]) || !F_isalpha(ptr[i])) if (F_isterm(ptr[i]) || !F_isalpha(ptr[i]))
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -714,6 +714,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
601,
/**/ /**/
600, 600,
/**/ /**/
Expand Down

0 comments on commit 81fa199

Please sign in to comment.