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.200 < prev    next >
Encoding:
Internet Message Format  |  2014-03-11  |  1.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.200
  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.200
  11. Problem:    Too many #ifdefs in the code.
  12. Solution:   Enable FEAT_VISUAL always, await any complaints
  13. Files:        src/feature.h
  14.  
  15.  
  16. *** ../vim-7.4.199/src/feature.h    2014-02-23 22:52:33.372764715 +0100
  17. --- src/feature.h    2014-03-12 17:48:24.396844782 +0100
  18. ***************
  19. *** 211,228 ****
  20.   #endif
  21.   
  22.   /*
  23. !  * +visual        Visual mode.
  24.    * +visualextra        Extra features for Visual mode (mostly block operators).
  25.    */
  26. ! #ifdef FEAT_SMALL
  27. ! # define FEAT_VISUAL
  28. ! # ifdef FEAT_NORMAL
  29. ! #  define FEAT_VISUALEXTRA
  30. ! # endif
  31. ! #else
  32. ! # ifdef FEAT_CLIPBOARD
  33. ! #  undef FEAT_CLIPBOARD    /* can't use clipboard without Visual mode */
  34. ! # endif
  35.   #endif
  36.   
  37.   /*
  38. --- 211,222 ----
  39.   #endif
  40.   
  41.   /*
  42. !  * +visual        Visual mode - now always included.
  43.    * +visualextra        Extra features for Visual mode (mostly block operators).
  44.    */
  45. ! #define FEAT_VISUAL
  46. ! #ifdef FEAT_NORMAL
  47. ! # define FEAT_VISUALEXTRA
  48.   #endif
  49.   
  50.   /*
  51. *** ../vim-7.4.199/src/version.c    2014-03-12 17:41:59.128838878 +0100
  52. --- src/version.c    2014-03-12 17:52:28.080848516 +0100
  53. ***************
  54. *** 740,741 ****
  55. --- 740,743 ----
  56.   {   /* Add new patch number below this line */
  57. + /**/
  58. +     200,
  59.   /**/
  60.  
  61. -- 
  62. It is illegal to take more than three sips of beer at a time while standing.
  63.         [real standing law in Texas, United States of America]
  64.  
  65.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  66. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  67. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  68.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  69.