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.919 < prev    next >
Encoding:
Internet Message Format  |  2013-05-03  |  1.7 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.919
  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.919 (after 7.3.788)
  11. Problem:    An empty nl.po file does not work with an old msgfmt.
  12. Solution:   Put a single # in the file. (Laurent Blume)
  13. Files:        src/po/Makefile
  14.  
  15.  
  16. *** ../vim-7.3.918/src/po/Makefile    2013-01-30 12:50:50.000000000 +0100
  17. --- src/po/Makefile    2013-04-27 14:04:45.000000000 +0200
  18. ***************
  19. *** 176,184 ****
  20.   
  21.   converted: $(MOCONVERTED)
  22.   
  23. ! # nl.po was added later, if it does not exist use an empty file.
  24.   nl.po:
  25. !     touch nl.po
  26.   
  27.   # Norwegian/Bokmal: "nb" is an alias for "no".
  28.   # Copying the file is not efficient, but I don't know of another way to make
  29. --- 176,185 ----
  30.   
  31.   converted: $(MOCONVERTED)
  32.   
  33. ! # nl.po was added later, if it does not exist use a file with just a # in it
  34. ! # (an empty file doesn't work with old msgfmt).
  35.   nl.po:
  36. !     @( echo \# > nl.po )
  37.   
  38.   # Norwegian/Bokmal: "nb" is an alias for "no".
  39.   # Copying the file is not efficient, but I don't know of another way to make
  40. *** ../vim-7.3.918/src/version.c    2013-04-24 18:34:40.000000000 +0200
  41. --- src/version.c    2013-05-04 03:30:05.000000000 +0200
  42. ***************
  43. *** 730,731 ****
  44. --- 730,733 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     919,
  48.   /**/
  49.  
  50. -- 
  51. God made the integers; all else is the work of Man.
  52.         -- Kronecker
  53.  
  54.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  55. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  56. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  57.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  58.