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.039 < prev    next >
Encoding:
Internet Message Format  |  2003-10-13  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.039 (extra)
  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.039 (extra)
  11. Problem:    More warning messages when using the MingW compiler.
  12. Solution:   Initialize variables. (Bill McCarthy)
  13. Files:        src/os_mswin.c
  14.  
  15.  
  16. *** ../vim-6.2.038/src/os_mswin.c    Sat May 24 17:30:21 2003
  17. --- src/os_mswin.c    Sun Jun 22 17:09:18 2003
  18. ***************
  19. *** 1653,1659 ****
  20.       static int
  21.   to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
  22.   {
  23. !     int        ret;
  24.       int        u;
  25.       int        nr;
  26.   
  27. --- 1653,1659 ----
  28.       static int
  29.   to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
  30.   {
  31. !     int        ret = 0;
  32.       int        u;
  33.       int        nr;
  34.   
  35. ***************
  36. *** 2849,2855 ****
  37.       int        pixels;
  38.       int        points = 0;
  39.       int        divisor = 0;
  40. !     HWND    hwnd;
  41.       HDC        hdc;
  42.       HDC        printer_dc = (HDC)pprinter_dc;
  43.   
  44. --- 2849,2855 ----
  45.       int        pixels;
  46.       int        points = 0;
  47.       int        divisor = 0;
  48. !     HWND    hwnd = (HWND)0;
  49.       HDC        hdc;
  50.       HDC        printer_dc = (HDC)pprinter_dc;
  51.   
  52. *** ../vim-6.2.038/src/version.c    Fri Jul 25 22:43:59 2003
  53. --- src/version.c    Sat Jul 26 19:49:08 2003
  54. ***************
  55. *** 632,633 ****
  56. --- 632,635 ----
  57.   {   /* Add new patch number below this line */
  58. + /**/
  59. +     39,
  60.   /**/
  61.  
  62. -- 
  63. ARTHUR:    ... and I am your king ....
  64. OLD WOMAN: Ooooh!  I didn't know we had a king.  I thought we were an
  65.            autonomous collective ...
  66.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  67.  
  68.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  69. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  70. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  71.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  72.