Mercurial > vim
changeset 34894:6da10ca25702
Problem: Commit 6f585d breaks CI
Commit: https://github.com/vim/vim/commit/c85838248246ff250b3e8818967cbd658104d72e
Author: Christian Brabandt <cb@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 <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 11 Apr 2024 23:15:04 +0200 |
parents | 3c4c69a1f734 |
children | a30e6625aa83 |
files | src/po/check.vim |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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