mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 15:38:33 +00:00
vim-patch:7.4.508
Problem: When generating ja.sjis.po the header is not correctly adjusted. Solution: Check for the right header string. (Ken Takata) https://code.google.com/p/vim/source/detail?r=v7-4-508
This commit is contained in:
@@ -19,9 +19,8 @@ int main(int argc, char **argv)
|
||||
fputs("charset=cp932", stdout);
|
||||
p += 12;
|
||||
}
|
||||
else if (strncmp(p, "ja.po - Japanese message file", 29) == 0)
|
||||
else if (strncmp(p, "# Original translations", 23) == 0)
|
||||
{
|
||||
fputs("ja.sjis.po - Japanese message file for Vim (version 6.x)\n", stdout);
|
||||
fputs("# generated from ja.po, DO NOT EDIT", stdout);
|
||||
while (p[1] != '\n')
|
||||
++p;
|
||||
|
@@ -230,7 +230,7 @@ static int included_patches[] = {
|
||||
//511 NA
|
||||
//510 NA
|
||||
//509,
|
||||
//508,
|
||||
508,
|
||||
//507 NA
|
||||
//506 NA
|
||||
//505 NA
|
||||
|
Reference in New Issue
Block a user