0
0
mirror of https://github.com/vim/vim.git synced 2025-10-07 05:54:16 -04:00

patch 9.0.0057: has('patch-xxx') returns true

Problem:    has('patch-xxx') returns true.
Solution:   Check for digit. (closes #10751)
This commit is contained in:
Bram Moolenaar
2022-07-18 20:48:50 +01:00
parent bd683e3a79
commit 5154a88800
3 changed files with 4 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ func Test_version()
call assert_false(has('patch-7.4.'))
call assert_false(has('patch-9.1.0'))
call assert_false(has('patch-9.9.1'))
call assert_false(has('patch-abc'))
endfunc
func Test_op_ternary()