Skip to content

Commit 728f395

Browse files
committed
updated for version 7.4.508
Problem: When generating ja.sjis.po the header is not correctly adjusted. Solution: Check for the right header string. (Ken Takata)
1 parent 4270437 commit 728f395

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/po/sjiscorr.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ main(argc, argv)
2323
fputs("charset=cp932", stdout);
2424
p += 12;
2525
}
26-
else if (strncmp(p, "ja.po - Japanese message file", 29) == 0)
26+
else if (strncmp(p, "# Original translations", 23) == 0)
2727
{
28-
fputs("ja.sjis.po - Japanese message file for Vim (version 6.x)\n", stdout);
2928
fputs("# generated from ja.po, DO NOT EDIT", stdout);
3029
while (p[1] != '\n')
3130
++p;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
508,
744746
/**/
745747
507,
746748
/**/

0 commit comments

Comments
 (0)