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.0 / 7.0.116 < prev    next >
Encoding:
Internet Message Format  |  2006-10-02  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.0.116
  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 7.0.116
  11. Problem:    64 bit Windows version reports "32 bit" in the ":version" output.
  12.             (M. Veerman)
  13. Solution:   Change the text for Win64.
  14. Files:      src/version.c
  15.  
  16.  
  17. *** ../vim-7.0.115/src/version.c    Tue Oct  3 15:49:20 2006
  18. --- src/version.c    Tue Oct  3 16:29:31 2006
  19. ***************
  20. *** 668,669 ****
  21. --- 668,671 ----
  22.   {   /* Add new patch number below this line */
  23. + /**/
  24. +     116,
  25.   /**/
  26. ***************
  27. *** 962,966 ****
  28. --- 964,972 ----
  29.       MSG_PUTS(_("\nMS-Windows 16/32 bit GUI version"));
  30.   #  else
  31. + #   ifdef _WIN64
  32. +     MSG_PUTS(_("\nMS-Windows 64 bit GUI version"));
  33. + #   else
  34.       MSG_PUTS(_("\nMS-Windows 32 bit GUI version"));
  35. + #   endif
  36.   #  endif
  37.       if (gui_is_win32s())
  38.  
  39. -- 
  40. Article in the first Free Software Magazine: "Bram Moolenaar studied electrical
  41. engineering at the Technical University of Delft and graduated in 1985 on a
  42. multi-processor Unix architecture."
  43. Response by "dimator": Could the school not afford a proper stage for the
  44. ceremony?
  45.  
  46.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  47. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  48. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  49.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  50.