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.429 < prev    next >
Encoding:
Internet Message Format  |  2014-08-30  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.429
  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.429
  11. Problem:    Build fails with fewer features. (Elimar Riesebieter)
  12. Solution:   Add #ifdef.
  13. Files:        src/normal.c
  14.  
  15.  
  16. *** ../vim-7.4.428/src/normal.c    2014-08-29 14:20:47.418440975 +0200
  17. --- src/normal.c    2014-08-30 13:29:17.342622953 +0200
  18. ***************
  19. *** 4518,4525 ****
  20. --- 4518,4527 ----
  21.        */
  22.       validate_virtcol();
  23.       virtcol = curwin->w_virtcol;
  24. + # if defined(FEAT_LINEBREAK)
  25.       if (virtcol > (colnr_T)width1 && *p_sbr != NUL)
  26.           virtcol -= vim_strsize(p_sbr);
  27. + # endif
  28.   
  29.       if (virtcol > curwin->w_curswant
  30.           && (curwin->w_curswant < (colnr_T)width1
  31. *** ../vim-7.4.428/src/version.c    2014-08-29 17:45:28.066467800 +0200
  32. --- src/version.c    2014-08-30 13:29:57.646623041 +0200
  33. ***************
  34. *** 743,744 ****
  35. --- 743,746 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     429,
  39.   /**/
  40.  
  41. -- 
  42. Where do you want to crash today?
  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.