comparison src/testdir/shared.vim @ 20221:ec0ace1ddc20 v8.2.0666

patch 8.2.0666: Ruby test fails on MS-Windows Commit: https://github.com/vim/vim/commit/88e6cc253903c86d06abb59b35c85e6aef0152f3 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 30 19:19:29 2020 +0200 patch 8.2.0666: Ruby test fails on MS-Windows Problem: Ruby test fails on MS-Windows. Solution: Remove the "maintainer" line. (Ken Takata, closes https://github.com/vim/vim/issues/6015)
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Apr 2020 19:30:04 +0200
parents 031184ace7c5
children cae01dabd78e
comparison
equal deleted inserted replaced
20220:c9f956dfe3a0 20221:ec0ace1ddc20
336 return v:true 336 return v:true
337 endif 337 endif
338 return v:false 338 return v:false
339 endfunc 339 endfunc
340 340
341 " Get all messages but drop the maintainer entry.
342 func GetMessages()
343 redir => result
344 redraw | messages
345 redir END
346 let msg_list = split(result, "\n")
347 if msg_list->len() > 0 && msg_list[0] =~ 'Messages maintainer:'
348 return msg_list[1:]
349 endif
350 return msg_list
351 endfunc
352
341 " vim: shiftwidth=2 sts=2 expandtab 353 " vim: shiftwidth=2 sts=2 expandtab