Problem: Commit 6f585d breaks CI
Commit:
https://github.com/vim/vim/commit/c85838248246ff250b3e8818967cbd658104d72e
Author: Christian Brabandt <[email protected]>
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 <[email protected]>
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
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1rv1lA-004qvm-H8%40256bit.org.