0
0
mirror of https://github.com/vim/vim.git synced 2025-10-23 08:44:20 -04:00

patch 8.1.2038: has('vimscript-4') is always 0

Problem:    has('vimscript-4') is always 0.
Solution:   Add "vimscript-4" to the feature table. (Naruhiko Nishino,
            closes #4941)
This commit is contained in:
Bram Moolenaar
2019-09-15 17:49:10 +02:00
parent a046b37c22
commit af91438338
3 changed files with 4 additions and 0 deletions

View File

@@ -194,6 +194,7 @@ endfunc
scriptversion 4
func Test_vvar_scriptversion4()
call assert_true(has('vimscript-4'))
call assert_equal(17, 017)
call assert_equal(18, 018)
call assert_equal(64, 0b1'00'00'00)