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.238 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.238
  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.238
  11. Problem:    Compiler warning for conversion.
  12. Solution:   Add type cast. (Mike Williams)
  13. Files:        src/ex_getln.c
  14.  
  15.  
  16. *** ../vim-7.3.237/src/ex_getln.c    2011-06-26 19:40:14.000000000 +0200
  17. --- src/ex_getln.c    2011-07-04 14:23:27.000000000 +0200
  18. ***************
  19. *** 5025,5031 ****
  20.   
  21.       *num_file = 0;
  22.       *file = NULL;
  23. !     pat_len = STRLEN(pat);
  24.       ga_init2(&ga, (int)sizeof(char *), 10);
  25.   
  26.       for (i = 0; dirnames[i] != NULL; ++i)
  27. --- 5025,5031 ----
  28.   
  29.       *num_file = 0;
  30.       *file = NULL;
  31. !     pat_len = (int)STRLEN(pat);
  32.       ga_init2(&ga, (int)sizeof(char *), 10);
  33.   
  34.       for (i = 0; dirnames[i] != NULL; ++i)
  35. *** ../vim-7.3.237/src/version.c    2011-06-26 19:40:14.000000000 +0200
  36. --- src/version.c    2011-07-07 15:04:00.000000000 +0200
  37. ***************
  38. *** 711,712 ****
  39. --- 711,714 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     238,
  43.   /**/
  44.  
  45. -- 
  46. hundred-and-one symptoms of being an internet addict:
  47. 255. You work for a newspaper and your editor asks you to write an
  48.      article about Internet addiction...in the "first person."
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  53.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  54.