Skip to content

Commit c858382

Browse files
committed
Problem: Commit 6f585d breaks CI
Problem: Commit 6f585d breaks CI Solution: Don't error out, simply return an error message. Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent bba7980 commit c858382

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/po/check.vim

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,10 @@ endif
230230
let overlong = search('\%>80v', 'n')
231231
if overlong > 0
232232
echomsg "Lines should be wrapped at 80 columns"
233-
if error == 0
234-
let error = overlong
235-
endif
233+
" TODO: make this an error
234+
" if error == 0
235+
" let error = overlong
236+
" endif
236237
endif
237238

238239
if error == 0

0 commit comments

Comments
 (0)