aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-07-30 11:45:41 +0200
committerGitHub <noreply@github.com>2019-07-30 11:45:41 +0200
commitbe6bf75d79b2dee2b27461a5d95e88c30088832a (patch)
tree6d2cc8c2737ca3cd4f299f92d8253c05c27f8eaf /src
parent213b6b5c28f069df3e37ddfb4692b22f26b831cb (diff)
parentb117754a8b304269f728d4c3b4a8ac09b10db1f6 (diff)
downloadrneovim-be6bf75d79b2dee2b27461a5d95e88c30088832a.tar.gz
rneovim-be6bf75d79b2dee2b27461a5d95e88c30088832a.tar.bz2
rneovim-be6bf75d79b2dee2b27461a5d95e88c30088832a.zip
Merge pull request #10656 from blueyed/minor
Minor: align test, fix comment/usage
Diffstat (limited to 'src')
-rw-r--r--src/nvim/generators/gen_eval.lua2
-rw-r--r--src/nvim/testdir/test_compiler.vim6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/generators/gen_eval.lua b/src/nvim/generators/gen_eval.lua
index fa01935fd4..2c6f8f2603 100644
--- a/src/nvim/generators/gen_eval.lua
+++ b/src/nvim/generators/gen_eval.lua
@@ -8,7 +8,7 @@ local funcs_file = arg[4]
if nvimsrcdir == '--help' then
print([[
Usage:
- lua geneval.lua src/nvim build/src/nvim/auto
+ lua gen_eval.lua src/nvim build/src/nvim/auto
Will generate build/src/nvim/auto/funcs.generated.h with definition of functions
static const array.
diff --git a/src/nvim/testdir/test_compiler.vim b/src/nvim/testdir/test_compiler.vim
index 4600a28da5..46c14d8bc3 100644
--- a/src/nvim/testdir/test_compiler.vim
+++ b/src/nvim/testdir/test_compiler.vim
@@ -33,9 +33,9 @@ endfunc
func Test_compiler_without_arg()
let a=split(execute('compiler'))
- call assert_match(expand('^.*runtime/compiler/ant.vim$'), a[0])
- call assert_match(expand('^.*runtime/compiler/bcc.vim$'), a[1])
- call assert_match(expand('^.*runtime/compiler/xmlwf.vim$'), a[-1])
+ call assert_match('^.*runtime/compiler/ant.vim$', a[0])
+ call assert_match('^.*runtime/compiler/bcc.vim$', a[1])
+ call assert_match('^.*runtime/compiler/xmlwf.vim$', a[-1])
endfunc
func Test_compiler_completion()