summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-05-27 20:23:20 +0100
committerBram Moolenaar <Bram@vim.org>2022-05-27 20:23:20 +0100
commitddf531292971f44e8545a3e097c0d8a11773eb38 (patch)
tree5a91d43e8b97ef421895aad010e81918ad793a25
parent76381a5b4f3f6de1df33a8ab3e1f7db2e1764af6 (diff)
patch 8.2.5032: Python 3 test fails without the GUIv8.2.5032
Problem: Python 3 test fails without the GUI. Solution: Check the balloon_eval feature is available.
-rw-r--r--src/testdir/test_python3.vim4
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim
index dd2da400bd..778d83b8e0 100644
--- a/src/testdir/test_python3.vim
+++ b/src/testdir/test_python3.vim
@@ -381,11 +381,13 @@ func Test_python3_opt_reset_local_to_global()
\ ['errorformat', '%f:%l:%m', '%s-%l-%m', ''],
\ ['grepprg', 'ggprg', 'lgprg', ''],
\ ['makeprg', 'gmprg', 'lmprg', ''],
- \ ['balloonexpr', 'gbexpr', 'lbexpr', ''],
\ ['cryptmethod', 'blowfish2', 'zip', ''],
\ ['lispwords', 'abc', 'xyz', ''],
\ ['makeencoding', 'utf-8', 'latin1', ''],
\ ['undolevels', 100, 200, -123456]]
+ if has('balloon_eval')
+ call add(bopts, ['balloonexpr', 'gbexpr', 'lbexpr', ''])
+ endif
" Set the global and buffer-local option values and then clear the
" buffer-local option value.
diff --git a/src/version.c b/src/version.c
index 999cfde686..e6a048ce0e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 5032,
+/**/
5031,
/**/
5030,