]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
Problem: Commit 6f585d breaks CI
authorChristian Brabandt <cb@256bit.org>
Thu, 11 Apr 2024 21:10:54 +0000 (23:10 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 11 Apr 2024 21:10:54 +0000 (23:10 +0200)
Problem:  Commit 6f585d breaks CI
Solution: Don't error out, simply return an error message.

Signed-off-by: Christian Brabandt <cb@256bit.org>
src/po/check.vim

index 659a196055a892914c4758dd11b3067e85762189..b0460f10de0566be78e8c55258bf1b1b52315abc 100644 (file)
@@ -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