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.3 / 7.3.804 < prev    next >
Encoding:
Internet Message Format  |  2013-02-05  |  1.3 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.804
  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.3.804 (after 7.3.799)
  11. Problem:    Compiler warning for tiny build. (Tony Mechelynck)
  12. Solution:   Add #ifdefs around variable.
  13. Files:        src/buffer.c
  14.  
  15.  
  16. *** ../vim-7.3.803/src/buffer.c    2013-02-06 12:14:36.000000000 +0100
  17. --- src/buffer.c    2013-02-06 18:42:05.000000000 +0100
  18. ***************
  19. *** 1441,1447 ****
  20. --- 1441,1449 ----
  21.   enter_buffer(buf)
  22.       buf_T    *buf;
  23.   {
  24. + #ifdef FEAT_SYN_HL
  25.       long old_tw = curbuf->b_p_tw;
  26. + #endif
  27.   
  28.       /* Copy buffer and window local option values.  Not for a help buffer. */
  29.       buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
  30. *** ../vim-7.3.803/src/version.c    2013-02-06 18:23:58.000000000 +0100
  31. --- src/version.c    2013-02-06 18:42:59.000000000 +0100
  32. ***************
  33. *** 727,728 ****
  34. --- 727,730 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     804,
  38.   /**/
  39.  
  40. -- 
  41. Sorry, no fortune today.
  42.  
  43.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  44. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  45. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  46.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  47.