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.2.377 < prev    next >
Encoding:
Internet Message Format  |  2004-03-17  |  2.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.377
  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.2.377 (after 6.2.372)
  11. Problem:    Compiler warnings for signed/unsigned compare. (Michael Wookey)
  12. Solution:   Add type cast.
  13. Files:        src/normal.c
  14.  
  15.  
  16. *** ../vim-6.2.376/src/normal.c    Wed Mar 17 18:17:24 2004
  17. --- src/normal.c    Thu Mar 18 11:17:09 2004
  18. ***************
  19. *** 3300,3306 ****
  20.                   : mb_get_class(ptr + col) != 0)
  21.   # if defined(FEAT_NETBEANS_INTG) && defined(FEAT_BEVAL)
  22.               || ((find_type & FIND_EVAL)
  23. !             && col <= startcol
  24.               && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
  25.   # endif
  26.           ))
  27. --- 3300,3306 ----
  28.                   : mb_get_class(ptr + col) != 0)
  29.   # if defined(FEAT_NETBEANS_INTG) && defined(FEAT_BEVAL)
  30.               || ((find_type & FIND_EVAL)
  31. !             && col <= (int)startcol
  32.               && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
  33.   # endif
  34.           ))
  35. ***************
  36. *** 3312,3318 ****
  37.                  : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
  38.   # if defined(FEAT_NETBEANS_INTG) && defined(FEAT_BEVAL)
  39.               || ((find_type & FIND_EVAL)
  40. !             && col <= startcol
  41.               && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
  42.   # endif
  43.           )
  44. --- 3312,3318 ----
  45.                  : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
  46.   # if defined(FEAT_NETBEANS_INTG) && defined(FEAT_BEVAL)
  47.               || ((find_type & FIND_EVAL)
  48. !             && col <= (int)startcol
  49.               && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
  50.   # endif
  51.           )
  52. *** ../vim-6.2.376/src/version.c    Thu Mar 18 12:18:09 2004
  53. --- src/version.c    Thu Mar 18 12:20:03 2004
  54. ***************
  55. *** 639,640 ****
  56. --- 639,642 ----
  57.   {   /* Add new patch number below this line */
  58. + /**/
  59. +     377,
  60.   /**/
  61.  
  62. -- 
  63. Over the years, I've developed my sense of deja vu so acutely that now
  64. I can remember things that *have* happened before ...
  65.  
  66.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  67. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  68. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  69.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  70.