From: Christian Brabandt Date: Thu, 11 Apr 2024 21:10:54 +0000 (+0200) Subject: Problem: Commit 6f585d breaks CI X-Git-Tag: v9.1.0310~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c85838248246ff250b3e8818967cbd658104d72e;p=thirdparty%2Fvim.git 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 --- diff --git a/src/po/check.vim b/src/po/check.vim index 659a196055..b0460f10de 100644 --- a/src/po/check.vim +++ b/src/po/check.vim @@ -230,9 +230,10 @@ endif let overlong = search('\%>80v', 'n') if overlong > 0 echomsg "Lines should be wrapped at 80 columns" - if error == 0 - let error = overlong - endif + " TODO: make this an error + " if error == 0 + " let error = overlong + " endif endif if error == 0