|
Karsten Hopp |
c9351d |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
c9351d |
Subject: Patch 7.4.508
|
|
Karsten Hopp |
c9351d |
Fcc: outbox
|
|
Karsten Hopp |
c9351d |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
c9351d |
Mime-Version: 1.0
|
|
Karsten Hopp |
c9351d |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
c9351d |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
c9351d |
------------
|
|
Karsten Hopp |
c9351d |
|
|
Karsten Hopp |
c9351d |
Patch 7.4.508
|
|
Karsten Hopp |
c9351d |
Problem: When generating ja.sjis.po the header is not correctly adjusted.
|
|
Karsten Hopp |
c9351d |
Solution: Check for the right header string. (Ken Takata)
|
|
Karsten Hopp |
c9351d |
Files: src/po/sjiscorr.c
|
|
Karsten Hopp |
c9351d |
|
|
Karsten Hopp |
c9351d |
|
|
Karsten Hopp |
c9351d |
*** ../vim-7.4.507/src/po/sjiscorr.c 2013-05-19 05:15:15.000000000 +0200
|
|
Karsten Hopp |
c9351d |
--- src/po/sjiscorr.c 2014-11-12 13:01:37.574369693 +0100
|
|
Karsten Hopp |
c9351d |
***************
|
|
Karsten Hopp |
c9351d |
*** 23,31 ****
|
|
Karsten Hopp |
c9351d |
fputs("charset=cp932", stdout);
|
|
Karsten Hopp |
c9351d |
p += 12;
|
|
Karsten Hopp |
c9351d |
}
|
|
Karsten Hopp |
c9351d |
! else if (strncmp(p, "ja.po - Japanese message file", 29) == 0)
|
|
Karsten Hopp |
c9351d |
{
|
|
Karsten Hopp |
c9351d |
- fputs("ja.sjis.po - Japanese message file for Vim (version 6.x)\n", stdout);
|
|
Karsten Hopp |
c9351d |
fputs("# generated from ja.po, DO NOT EDIT", stdout);
|
|
Karsten Hopp |
c9351d |
while (p[1] != '\n')
|
|
Karsten Hopp |
c9351d |
++p;
|
|
Karsten Hopp |
c9351d |
--- 23,30 ----
|
|
Karsten Hopp |
c9351d |
fputs("charset=cp932", stdout);
|
|
Karsten Hopp |
c9351d |
p += 12;
|
|
Karsten Hopp |
c9351d |
}
|
|
Karsten Hopp |
c9351d |
! else if (strncmp(p, "# Original translations", 23) == 0)
|
|
Karsten Hopp |
c9351d |
{
|
|
Karsten Hopp |
c9351d |
fputs("# generated from ja.po, DO NOT EDIT", stdout);
|
|
Karsten Hopp |
c9351d |
while (p[1] != '\n')
|
|
Karsten Hopp |
c9351d |
++p;
|
|
Karsten Hopp |
c9351d |
*** ../vim-7.4.507/src/version.c 2014-11-06 10:02:57.023057491 +0100
|
|
Karsten Hopp |
c9351d |
--- src/version.c 2014-11-12 13:04:27.308402708 +0100
|
|
Karsten Hopp |
c9351d |
***************
|
|
Karsten Hopp |
c9351d |
*** 743,744 ****
|
|
Karsten Hopp |
c9351d |
--- 743,746 ----
|
|
Karsten Hopp |
c9351d |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
c9351d |
+ /**/
|
|
Karsten Hopp |
c9351d |
+ 508,
|
|
Karsten Hopp |
c9351d |
/**/
|
|
Karsten Hopp |
c9351d |
|
|
Karsten Hopp |
c9351d |
--
|
|
Karsten Hopp |
c9351d |
TALL KNIGHT: Firstly. You must get us another shrubbery!
|
|
Karsten Hopp |
c9351d |
OTHER KNIGHTS: More shrubberies! More shrubberies for the ex-Knights of Ni!
|
|
Karsten Hopp |
c9351d |
ARTHUR: Not another shrubbery -
|
|
Karsten Hopp |
c9351d |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
c9351d |
|
|
Karsten Hopp |
c9351d |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
c9351d |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
c9351d |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
c9351d |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|