home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.4 / 7.4.453 < prev    next >
Encoding:
Internet Message Format  |  2014-09-19  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.453
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.453
  11. Problem:    Still can't build with tiny features.
  12. Solution:   Add #ifdef.
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim-7.4.452/src/ex_cmds.c    2014-09-19 22:05:48.606465199 +0200
  17. --- src/ex_cmds.c    2014-09-19 22:08:31.850465555 +0200
  18. ***************
  19. *** 5906,5911 ****
  20. --- 5906,5912 ----
  21.   ex_helpclose(eap)
  22.       exarg_T    *eap UNUSED;
  23.   {
  24. + #if defined(FEAT_WINDOWS)
  25.       win_T *win;
  26.   
  27.       FOR_ALL_WINDOWS(win)
  28. ***************
  29. *** 5916,5921 ****
  30. --- 5917,5923 ----
  31.           return;
  32.       }
  33.       }
  34. + #endif
  35.   }
  36.   
  37.   #if defined(FEAT_MULTI_LANG) || defined(PROTO)
  38. *** ../vim-7.4.452/src/version.c    2014-09-19 22:05:48.610465199 +0200
  39. --- src/version.c    2014-09-19 22:19:43.058467021 +0200
  40. ***************
  41. *** 743,744 ****
  42. --- 743,746 ----
  43.   {   /* Add new patch number below this line */
  44. + /**/
  45. +     453,
  46.   /**/
  47.  
  48.  
  49. -- 
  50. "Hit any key to continue" does _not_ mean you can hit the on/off button!
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  54. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  55.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  56.