Skip to content

Commit 65cedb2

Browse files
committed
patch 8.0.0835: translations check with msgfmt does not work
Problem: Translations check with msgfmt does not work. Solution: Add a space before the file name.
1 parent 2a4f06f commit 65cedb2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/po/check.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ endwhile
146146
" Check that the file is well formed according to msgfmts understanding
147147
if executable("msgfmt")
148148
let filename = expand("%")
149-
let a = system("msgfmt --statistics OLD_PO_FILE_INPUT=yes" . filename)
149+
let a = system("msgfmt --statistics OLD_PO_FILE_INPUT=yes " . filename)
150150
if v:shell_error != 0
151151
let error = matchstr(a, filename.':\zs\d\+\ze:')+0
152152
for line in split(a, '\n') | echomsg line | endfor

src/version.c

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

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
835,
772774
/**/
773775
834,
774776
/**/

0 commit comments

Comments
 (0)