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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.204
  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.204 (after 7.3.201)
  11. Problem:    Compiler warning.
  12. Solution:   Add type cast. (Mike Williams)
  13. Files:        src/misc1.c
  14.  
  15.  
  16. *** ../mercurial/vim73/src/misc1.c    2011-05-25 15:16:06.000000000 +0200
  17. --- src/misc1.c    2011-05-25 17:25:10.000000000 +0200
  18. ***************
  19. *** 7657,7663 ****
  20.                    * not the one from "if () {". */
  21.                   if (*l == '}')
  22.                   curwin->w_cursor.col =
  23. !                            (l - ml_get_curline()) + 1;
  24.   
  25.                   if ((trypos = find_start_brace(ind_maxcomment))
  26.                                          == NULL
  27. --- 7657,7663 ----
  28.                    * not the one from "if () {". */
  29.                   if (*l == '}')
  30.                   curwin->w_cursor.col =
  31. !                       (colnr_T)(l - ml_get_curline()) + 1;
  32.   
  33.                   if ((trypos = find_start_brace(ind_maxcomment))
  34.                                          == NULL
  35. *** ../vim-7.3.203/src/version.c    2011-05-25 17:06:16.000000000 +0200
  36. --- src/version.c    2011-05-25 17:29:32.000000000 +0200
  37. ***************
  38. *** 711,712 ****
  39. --- 711,714 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     204,
  43.   /**/
  44.  
  45. -- 
  46. In a world without walls and borders, who needs windows and gates?
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.