We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3a205 commit e53ec39Copy full SHA for e53ec39
2 files changed
src/po/check.vim
@@ -44,6 +44,17 @@ let wsv = winsaveview()
44
let error = 0
45
46
while 1
47
+ let lnum = line('.')
48
+ if getline(lnum) =~ 'msgid "Text;.*;"'
49
+ if getline(lnum + 1) !~ '^msgstr "\([^;]\+;\)\+"'
50
+ echomsg 'Mismatching ; in line ' . (lnum + 1)
51
+ echomsg 'Did you forget the trailing semicolon?'
52
+ if error == 0
53
+ let error = lnum + 1
54
+ endif
55
56
57
+
58
if getline(line('.') - 1) !~ "no-c-format"
59
" go over the "msgid" and "msgid_plural" lines
60
let prevfromline = 'foobar'
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 2305,
746
/**/
747
2304,
748
0 commit comments