| To: vim-dev@vim.org |
| Subject: Patch 7.2.110 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.2.110 |
| Problem: Compiler warning for unused variable. |
| Solution: Init the variable. |
| Files: src/ex_docmd.c |
| |
| |
| |
| |
| |
| *** 5916,5922 **** |
| char_u *q; |
| |
| char_u *start; |
| ! char_u *end; |
| char_u *ksp; |
| size_t len, totlen; |
| |
| --- 5916,5922 ---- |
| char_u *q; |
| |
| char_u *start; |
| ! char_u *end = NULL; |
| char_u *ksp; |
| size_t len, totlen; |
| |
| |
| |
| |
| *** 678,679 **** |
| --- 678,681 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 110, |
| /**/ |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 100. The most exciting sporting events you noticed during summer 1996 |
| was Netscape vs. Microsoft. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ download, build and distribute -- http://www.A-A-P.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |