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 / 6.1.410 < prev    next >
Encoding:
Internet Message Format  |  2003-03-17  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.410
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.1.410 (depends on 6.1.390)
  11. Problem:    Linking error when compiling with Netbeans but without sign icons.
  12.         (Malte Neumann)
  13. Solution:   Don't define buf_signcount() when sign icons are unavailable.
  14. Files:        src/buffer.c
  15.  
  16.  
  17. *** ../vim61.409/src/buffer.c    Sat Mar 15 22:05:44 2003
  18. --- src/buffer.c    Tue Mar 18 14:11:21 2003
  19. ***************
  20. *** 4649,4654 ****
  21. --- 4649,4655 ----
  22.   }
  23.   
  24.   
  25. + #  if defined(FEAT_SIGN_ICONS) || defined(PROTO)
  26.   /* return the number of icons on the given line */
  27.       int
  28.   buf_signcount(buf, lnum)
  29. ***************
  30. *** 4665,4670 ****
  31. --- 4666,4672 ----
  32.   
  33.       return count;
  34.   }
  35. + #  endif /* FEAT_SIGN_ICONS */
  36.   # endif /* FEAT_NETBEANS_INTG */
  37.   
  38.   
  39. *** ../vim61.409/src/version.c    Mon Mar 17 21:59:02 2003
  40. --- src/version.c    Tue Mar 18 14:13:28 2003
  41. ***************
  42. *** 613,614 ****
  43. --- 613,616 ----
  44.   {   /* Add new patch number below this line */
  45. + /**/
  46. +     410,
  47.   /**/
  48.  
  49. -- 
  50. hundred-and-one symptoms of being an internet addict:
  51. 110. You actually volunteer to become your employer's webmaster.
  52.  
  53.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  54. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  55. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  56.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  57.