diff options
author | lonerover <pathfinder1644@yahoo.com> | 2018-05-20 10:21:32 +0800 |
---|---|---|
committer | lonerover <pathfinder1644@yahoo.com> | 2018-05-20 10:22:38 +0800 |
commit | 3046f4499bdbe8dd3c79aee987498e644a5d6a4a (patch) | |
tree | f45f26ec111625f320f1d92cd94f236ac79d28ed /src | |
parent | d0e07c043b9ad935b46d5625854ad57d1093ad46 (diff) | |
download | rneovim-3046f4499bdbe8dd3c79aee987498e644a5d6a4a.tar.gz rneovim-3046f4499bdbe8dd3c79aee987498e644a5d6a4a.tar.bz2 rneovim-3046f4499bdbe8dd3c79aee987498e644a5d6a4a.zip |
vim-patch:8.0.0491: quotestar test fails when features are missing
Problem: The quotestar test fails when a required feature is missing.
Solution: Prepend "Skipped" to the thrown exception.
https://github.com/vim/vim/commit/bfd830d3e2dbd1e9b14c65625f18773074e6ac67
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_quotestar.vim | 2 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_quotestar.vim b/src/nvim/testdir/test_quotestar.vim index 300a964731..111a226b65 100644 --- a/src/nvim/testdir/test_quotestar.vim +++ b/src/nvim/testdir/test_quotestar.vim @@ -134,6 +134,6 @@ func Test_quotestar() let @* = quotestar_saved if !empty(skipped) - throw skipped + throw 'Skipped: ' . skipped endif endfunc diff --git a/src/nvim/version.c b/src/nvim/version.c index 87a8b53bb6..53931bfb50 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -1148,7 +1148,7 @@ static const int included_patches[] = { // 494, // 493, // 492, - // 491, + 491, 490, 489, // 488, |