| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.415 |
| 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.415 (after 7.4.414) |
| Problem: Cannot build. Warning for shadowed variable. (John Little) |
| Solution: Add missing change. Remove declaration. |
| Files: src/vim.h, src/ex_docmd.c |
| |
| |
| |
| |
| |
| *** 1326,1331 **** |
| --- 1326,1332 ---- |
| EVENT_SHELLFILTERPOST, /* after ":1,2!cmd", ":w !cmd", ":r !cmd". */ |
| EVENT_TEXTCHANGED, /* text was modified */ |
| EVENT_TEXTCHANGEDI, /* text was modified in Insert mode*/ |
| + EVENT_CMDUNDEFINED, /* command undefined */ |
| NUM_EVENTS /* MUST be the last one */ |
| }; |
| |
| |
| |
| |
| *** 2150,2158 **** |
| && ASCII_ISUPPER(*ea.cmd) |
| && has_cmdundefined()) |
| { |
| - char_u *p = ea.cmd; |
| int ret; |
| |
| while (ASCII_ISALNUM(*p)) |
| ++p; |
| p = vim_strnsave(ea.cmd, p - ea.cmd); |
| --- 2150,2158 ---- |
| && ASCII_ISUPPER(*ea.cmd) |
| && has_cmdundefined()) |
| { |
| int ret; |
| |
| + p = ea.cmd; |
| while (ASCII_ISALNUM(*p)) |
| ++p; |
| p = vim_strnsave(ea.cmd, p - ea.cmd); |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 415, |
| /**/ |
| |
| -- |
| CVS sux, men don't like commitment |
| |
| /// 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 /// |