| To: vim_dev@googlegroups.com |
| Subject: Patch 7.3.601 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.3.601 |
| Problem: Bad code style. |
| Solution: Insert space, remove parens. |
| Files: src/farsi.c |
| |
| |
| |
| |
| |
| *** 1813,1819 **** |
| ptr[i] = toF_leading(ptr[i]); |
| ++i; |
| |
| ! while(canF_Rjoin(ptr[i]) && (i < llen)) |
| { |
| ptr[i] = toF_Rjoin(ptr[i]); |
| if (F_isterm(ptr[i]) || !F_isalpha(ptr[i])) |
| --- 1813,1819 ---- |
| ptr[i] = toF_leading(ptr[i]); |
| ++i; |
| |
| ! while (canF_Rjoin(ptr[i]) && i < llen) |
| { |
| ptr[i] = toF_Rjoin(ptr[i]); |
| if (F_isterm(ptr[i]) || !F_isalpha(ptr[i])) |
| |
| |
| |
| *** 716,717 **** |
| --- 716,719 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 601, |
| /**/ |
| |
| -- |
| There are three kinds of persons: Those who can count and those who can't. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |