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.1254 < prev    next >
Encoding:
Internet Message Format  |  2013-06-26  |  1.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.1254
  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.1254 (after 7.3.1252)
  11. Problem:    Can't build without the multi-lang feature. (John Marriott)
  12. Solution:   Add #ifdef.
  13. Files:        src/gui_w32.c
  14.  
  15.  
  16. *** ../vim-7.3.1253/src/gui_w32.c    2013-06-27 22:01:56.000000000 +0200
  17. --- src/gui_w32.c    2013-06-27 22:26:31.000000000 +0200
  18. ***************
  19. *** 4163,4171 ****
  20.        * didn't exist or wasn't specified, try the menu name
  21.        */
  22.       if (hbitmap == NULL
  23. !         && (gui_find_bitmap(menu->en_dname != NULL
  24. !                     ? menu->en_dname
  25. !                     : menu->dname, fname, "bmp") == OK))
  26.           hbitmap = LoadImage(
  27.               NULL,
  28.               fname,
  29. --- 4163,4173 ----
  30.        * didn't exist or wasn't specified, try the menu name
  31.        */
  32.       if (hbitmap == NULL
  33. !         && (gui_find_bitmap(
  34. ! #ifdef FEAT_MULTI_LANG
  35. !                 menu->en_dname != NULL ? menu->en_dname :
  36. ! #endif
  37. !                     menu->dname, fname, "bmp") == OK))
  38.           hbitmap = LoadImage(
  39.               NULL,
  40.               fname,
  41. *** ../vim-7.3.1253/src/version.c    2013-06-27 22:21:19.000000000 +0200
  42. --- src/version.c    2013-06-27 22:27:16.000000000 +0200
  43. ***************
  44. *** 730,731 ****
  45. --- 730,733 ----
  46.   {   /* Add new patch number below this line */
  47. + /**/
  48. +     1254,
  49.   /**/
  50.  
  51. -- 
  52. PRINCE:    He's come to rescue me, father.
  53. LAUNCELOT: (embarrassed) Well, let's not jump to conclusions ...
  54.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  55.  
  56.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  57. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  58. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  59.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  60.