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.070 < prev    next >
Encoding:
Internet Message Format  |  2013-11-04  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.070
  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.070 (after 7.4.069)
  11. Problem:    Can't compile with tiny features. (Tony Mechelynck)
  12. Solution:   Add #ifdef.
  13. Files:      src/buffer.c
  14.     
  15.  
  16. *** ../vim-7.4.069/src/buffer.c    2013-11-05 07:12:59.000000000 +0100
  17. --- src/buffer.c    2013-11-05 17:37:27.000000000 +0100
  18. ***************
  19. *** 213,219 ****
  20. --- 213,221 ----
  21.       if (curbuf->b_flags & BF_NEVERLOADED)
  22.       {
  23.       (void)buf_init_chartab(curbuf, FALSE);
  24. + #ifdef FEAT_CINDENT
  25.       parse_cino(curbuf);
  26. + #endif
  27.       }
  28.   
  29.       /*
  30. *** ../vim-7.4.069/src/version.c    2013-11-05 07:12:59.000000000 +0100
  31. --- src/version.c    2013-11-05 17:38:56.000000000 +0100
  32. ***************
  33. *** 740,741 ****
  34. --- 740,743 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     70,
  38.   /**/
  39.  
  40. -- 
  41. No man may purchase alcohol without written consent from his wife.
  42.         [real standing law in Pennsylvania, United States of America]
  43.  
  44.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  45. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  46. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  47.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  48.