Problem: Commit 6f585d breaks CI
Commit:
https://github.com/vim/vim/commit/c85838248246ff250b3e8818967cbd658104d72e
Author: Christian Brabandt <
c...@256bit.org>
Date: Thu Apr 11 23:10:54 2024 +0200
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 <
c...@256bit.org>
diff --git a/src/po/check.vim b/src/po/check.vim
index 659a19605..b0460f10d 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