vim-patch:c858382: Problem: Commit 6f585d breaks CI

Problem:  Commit 6f585d breaks CI
Solution: Don't error out, simply return an error message.

c858382482

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2026-01-22 13:34:59 +08:00
parent fc4188ded8
commit 95b6215f0a

View File

@@ -233,9 +233,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