|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.453
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.453
|
|
|
073263 |
Problem: Still can't build with tiny features.
|
|
|
073263 |
Solution: Add #ifdef.
|
|
|
073263 |
Files: src/ex_cmds.c
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.452/src/ex_cmds.c 2014-09-19 22:05:48.606465199 +0200
|
|
|
073263 |
--- src/ex_cmds.c 2014-09-19 22:08:31.850465555 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 5906,5911 ****
|
|
|
073263 |
--- 5906,5912 ----
|
|
|
073263 |
ex_helpclose(eap)
|
|
|
073263 |
exarg_T *eap UNUSED;
|
|
|
073263 |
{
|
|
|
073263 |
+ #if defined(FEAT_WINDOWS)
|
|
|
073263 |
win_T *win;
|
|
|
073263 |
|
|
|
073263 |
FOR_ALL_WINDOWS(win)
|
|
|
073263 |
***************
|
|
|
073263 |
*** 5916,5921 ****
|
|
|
073263 |
--- 5917,5923 ----
|
|
|
073263 |
return;
|
|
|
073263 |
}
|
|
|
073263 |
}
|
|
|
073263 |
+ #endif
|
|
|
073263 |
}
|
|
|
073263 |
|
|
|
073263 |
#if defined(FEAT_MULTI_LANG) || defined(PROTO)
|
|
|
073263 |
*** ../vim-7.4.452/src/version.c 2014-09-19 22:05:48.610465199 +0200
|
|
|
073263 |
--- src/version.c 2014-09-19 22:19:43.058467021 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 743,744 ****
|
|
|
073263 |
--- 743,746 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 453,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
"Hit any key to continue" does _not_ mean you can hit the on/off button!
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|