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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.547
  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.547 (after 7.3.541)
  11. Problem:    Compiler warning for uninitialized variable.
  12. Solution:   Initialize it.
  13. Files:        src/ops.c
  14.  
  15.  
  16. *** ../vim-7.3.546/src/ops.c    2012-06-06 16:12:54.000000000 +0200
  17. --- src/ops.c    2012-06-06 23:06:45.000000000 +0200
  18. ***************
  19. *** 4306,4312 ****
  20.       colnr_T    col = 0;
  21.       int        ret = OK;
  22.   #if defined(FEAT_COMMENTS) || defined(PROTO)
  23. !     int        *comments;
  24.       int        remove_comments = (use_formatoptions == TRUE)
  25.                     && has_format_option(FO_REMOVE_COMS);
  26.       int        prev_was_comment;
  27. --- 4306,4312 ----
  28.       colnr_T    col = 0;
  29.       int        ret = OK;
  30.   #if defined(FEAT_COMMENTS) || defined(PROTO)
  31. !     int        *comments = NULL;
  32.       int        remove_comments = (use_formatoptions == TRUE)
  33.                     && has_format_option(FO_REMOVE_COMS);
  34.       int        prev_was_comment;
  35. *** ../vim-7.3.546/src/version.c    2012-06-06 19:05:45.000000000 +0200
  36. --- src/version.c    2012-06-06 23:07:26.000000000 +0200
  37. ***************
  38. *** 716,717 ****
  39. --- 716,719 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     547,
  43.   /**/
  44.  
  45. -- 
  46. How To Keep A Healthy Level Of Insanity:
  47. 9. As often as possible, skip rather than walk.
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  52.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  53.