| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.877 |
| 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.4.877 (after 7.4.843) |
| Problem: ":find" sometimes fails. (Excanoe) |
| Solution: Compare current characters instead of previous ones. |
| Files: src/misc2.c |
| |
| |
| |
| |
| |
| *** 5084,5090 **** |
| i += MB_PTR2LEN(s1 + i); |
| j += MB_PTR2LEN(s2 + j); |
| } |
| ! return c1 == c2; |
| } |
| #endif |
| |
| --- 5084,5090 ---- |
| i += MB_PTR2LEN(s1 + i); |
| j += MB_PTR2LEN(s2 + j); |
| } |
| ! return s1[i] == s2[j]; |
| } |
| #endif |
| |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 877, |
| /**/ |
| |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 6. You refuse to go to a vacation spot with no electricity and no phone lines. |
| |
| /// 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 /// |