diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-30 18:56:35 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-30 18:56:35 +0000 |
commit | 6a058070924928f1b2bdb11f345229074904d8bd (patch) | |
tree | 6dea61d47ecbe8f3415e63e45842dc916acf89da /src/testdir/sautest | |
parent | d8fe6d34bb582438142d7c1f73d0bd8537bb3a7a (diff) | |
download | vim-git-6a058070924928f1b2bdb11f345229074904d8bd.tar.gz |
patch 8.2.4265: autoload tests failsv8.2.4265
Problem: Autoload tests fails.
Solution: Use export instead of name with #.
Diffstat (limited to 'src/testdir/sautest')
-rw-r--r-- | src/testdir/sautest/autoload/auto9.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/sautest/autoload/auto9.vim b/src/testdir/sautest/autoload/auto9.vim index c89ce3a33..fad1fa781 100644 --- a/src/testdir/sautest/autoload/auto9.vim +++ b/src/testdir/sautest/autoload/auto9.vim @@ -1,9 +1,9 @@ vim9script -func auto9#getsome() +export func Getsome() return 'some' endfunc -def auto9#add42(count: number): number +export def Add42(count: number): number return count + 42 enddef |