From 6c0e7297dbda295df20599936475fe7cc3ac1bff Mon Sep 17 00:00:00 2001 From: Karsten Hopp Date: Sep 09 2014 23:04:44 +0000 Subject: - patchlevel 431 --- diff --git a/7.4.431 b/7.4.431 new file mode 100644 index 0000000..e1b0714 --- /dev/null +++ b/7.4.431 @@ -0,0 +1,52 @@ +To: vim_dev@googlegroups.com +Subject: Patch 7.4.431 +Fcc: outbox +From: Bram Moolenaar +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 7.4.431 +Problem: Compiler warning. +Solution: Add type cast. (Mike Williams) +Files: src/ex_docmd.c + + +*** ../vim-7.4.430/src/ex_docmd.c 2014-08-23 14:16:11.884625637 +0200 +--- src/ex_docmd.c 2014-09-02 23:30:26.567267923 +0200 +*************** +*** 2155,2161 **** + p = ea.cmd; + while (ASCII_ISALNUM(*p)) + ++p; +! p = vim_strnsave(ea.cmd, p - ea.cmd); + ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL); + vim_free(p); + if (ret && !aborting()) +--- 2155,2161 ---- + p = ea.cmd; + while (ASCII_ISALNUM(*p)) + ++p; +! p = vim_strnsave(ea.cmd, (int)(p - ea.cmd)); + ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL); + vim_free(p); + if (ret && !aborting()) +*** ../vim-7.4.430/src/version.c 2014-08-30 18:10:15.106659776 +0200 +--- src/version.c 2014-09-09 12:21:42.312501370 +0200 +*************** +*** 743,744 **** +--- 743,746 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 431, + /**/ + +-- +hundred-and-one symptoms of being an internet addict: +105. When someone asks you for your address, you tell them your URL. + + /// 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 ///