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.359 < prev    next >
Encoding:
Internet Message Format  |  2004-03-14  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.359
  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.359 (after 6.2.352)
  11. Problem:    Compiler warning for long to int type cast.
  12. Solution:   Add explicit type cast.
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim-6.2.358/src/ex_cmds.c    Mon Mar 15 12:28:44 2004
  17. --- src/ex_cmds.c    Mon Mar 15 10:51:09 2004
  18. ***************
  19. *** 5779,5785 ****
  20.           else if (STRNCMP(arg, "buffer=", 7) == 0)
  21.           {
  22.           arg += 7;
  23. !         buf = buflist_findnr(getdigits(&arg));
  24.           if (*skipwhite(arg) != NUL)
  25.               EMSG(_(e_trailing));
  26.           break;
  27. --- 5779,5785 ----
  28.           else if (STRNCMP(arg, "buffer=", 7) == 0)
  29.           {
  30.           arg += 7;
  31. !         buf = buflist_findnr((int)getdigits(&arg));
  32.           if (*skipwhite(arg) != NUL)
  33.               EMSG(_(e_trailing));
  34.           break;
  35. *** ../vim-6.2.358/src/version.c    Mon Mar 15 12:28:44 2004
  36. --- src/version.c    Mon Mar 15 12:32:42 2004
  37. ***************
  38. *** 639,640 ****
  39. --- 639,642 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     359,
  43.   /**/
  44.  
  45. -- 
  46. I am also told that there is a logical proof out there somewhere
  47. that demonstrates that there is no task which duct tape cannot handle.
  48.                     -- Paul Brannan
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  53.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  54.